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
2015-03-17 23:46:25 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
9ed0da24d3b295d80b7287582731a81e5385255e
9ed0da24
2 parents
cf3becbc
6855ab4c
Merge branch 'tufang14-develop' into 2.0release
显示空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
5 行增加
和
4 行删除
trunk/src/app/srs_app_http_conn.cpp
trunk/src/core/srs_core.hpp
trunk/src/app/srs_app_http_conn.cpp
查看文件 @
9ed0da2
...
...
@@ -1104,8 +1104,8 @@ int SrsHttpServer::hijack(SrsHttpMessage* request, ISrsHttpHandler** ph)
int
ret
=
ERROR_SUCCESS
;
// when handler not the root, we think the handler is ok.
ISrsHttpHandler
*
h
=
ph
?
*
ph
:
NULL
;
if
(
h
->
entry
&&
h
->
entry
->
pattern
!=
"/"
)
{
ISrsHttpHandler
*
h
=
*
ph
?
*
ph
:
NULL
;
if
(
h
&&
h
->
entry
&&
h
->
entry
->
pattern
!=
"/"
)
{
return
ret
;
}
...
...
trunk/src/core/srs_core.hpp
查看文件 @
9ed0da2
...
...
@@ -29,13 +29,14 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
// current release version
#define VERSION_MAJOR
2
#define VERSION_MAJOR
3
#define VERSION_MINOR 0
#define VERSION_REVISION 0
#define VERSION_REVISION 143
// server info.
#define RTMP_SIG_SRS_KEY "SRS"
#define RTMP_SIG_SRS_CODE "
ZhouGuowen
"
#define RTMP_SIG_SRS_CODE "
OuXuli
"
#define RTMP_SIG_SRS_ROLE "origin/edge server"
#define RTMP_SIG_SRS_NAME RTMP_SIG_SRS_KEY"(Simple RTMP Server)"
#define RTMP_SIG_SRS_URL_SHORT "github.com/winlinvip/simple-rtmp-server"
...
...
请
注册
或
登录
后发表评论