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
2014-04-04 10:12:34 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f089eafd9fdf10946b4ebd22e39c0303c75adb8b
f089eafd
1 parent
3f137265
fix bug #38, remove app slash of jwplayer, change to 0.9.46
显示空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
6 行增加
和
2 行删除
trunk/src/core/srs_core.hpp
trunk/src/rtmp/srs_protocol_rtmp.cpp
trunk/src/core/srs_core.hpp
查看文件 @
f089eaf
...
...
@@ -31,7 +31,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// current release version
#define VERSION_MAJOR "0"
#define VERSION_MINOR "9"
#define VERSION_REVISION "4
5
"
#define VERSION_REVISION "4
6
"
#define RTMP_SIG_SRS_VERSION VERSION_MAJOR"."VERSION_MINOR"."VERSION_REVISION
// server info.
#define RTMP_SIG_SRS_KEY "srs"
...
...
trunk/src/rtmp/srs_protocol_rtmp.cpp
查看文件 @
f089eaf
...
...
@@ -131,7 +131,11 @@ int SrsRequest::discovery_app()
// remove the unsupported chars in names.
vhost
=
srs_string_remove
(
vhost
,
"/
\n\r\t
"
);
app
=
srs_string_remove
(
app
,
"
\n\r\t
"
);
stream
=
srs_string_remove
(
stream
,
"/
\n\r\t
"
);
stream
=
srs_string_remove
(
stream
,
"
\n\r\t
"
);
// remove end slash of app
app
=
srs_string_trim_end
(
app
,
"/"
);
stream
=
srs_string_trim_end
(
stream
,
"/"
);
return
ret
;
}
...
...
请
注册
或
登录
后发表评论