Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
srs
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
winlin
2017-01-18 16:03:57 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
60be29f3244a81974629c4b585e11854207e825e
60be29f3
1 parent
727652c5
fix #750, use specific error code for dns resolve. 2.0.231
显示空白字符变更
内嵌
并排对比
正在显示
4 个修改的文件
包含
4 行增加
和
2 行删除
README.md
trunk/src/core/srs_core.hpp
trunk/src/kernel/srs_kernel_error.hpp
trunk/src/libs/srs_librtmp.cpp
README.md
查看文件 @
60be29f
...
...
@@ -346,6 +346,7 @@ Remark:
## History
*
v2.0, 2017-01-18, fix
[
#750
][
bug #750
]
use specific error code for dns resolve. 2.0.231
*
<strong>
v2.0, 2017-01-18,
[
2.0 beta4(2.0.230)
][
r2.0b4
]
released. 86334 lines.
</strong>
*
v2.0, 2017-01-18, fix
[
#749
][
bug #749
]
, timestamp overflow for ATC. 2.0.230
*
v2.0, 2017-01-11, fix
[
#740
][
bug #740
]
, convert ts aac audio private stream 1 to common. 2.0.229
...
...
trunk/src/core/srs_core.hpp
查看文件 @
60be29f
...
...
@@ -31,7 +31,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// current release version
#define VERSION_MAJOR 2
#define VERSION_MINOR 0
#define VERSION_REVISION 23
0
#define VERSION_REVISION 23
1
// generated by configure, only macros.
#include <srs_auto_headers.hpp>
...
...
trunk/src/kernel/srs_kernel_error.hpp
查看文件 @
60be29f
...
...
@@ -97,6 +97,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#define ERROR_SYSTEM_DIR_EXISTS 1056
#define ERROR_SYSTEM_CREATE_DIR 1057
#define ERROR_SYSTEM_KILL 1058
#define ERROR_SYSTEM_DNS_RESOLVE 1059
///////////////////////////////////////////////////////
// RTMP protocol error.
...
...
trunk/src/libs/srs_librtmp.cpp
查看文件 @
60be29f
...
...
@@ -495,7 +495,7 @@ int srs_librtmp_context_resolve_host(Context* context)
// connect to server:port
context
->
ip
=
srs_dns_resolve
(
context
->
host
);
if
(
context
->
ip
.
empty
())
{
return
-
1
;
return
ERROR_SYSTEM_DNS_RESOLVE
;
}
return
ret
;
...
...
请
注册
或
登录
后发表评论