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-06-27 13:40:17 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
efed34301cc571677fd5cf3d55bf473e0e3770eb
efed3430
1 parent
b357504b
add virtual destructor to SrsRefer
隐藏空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
11 行增加
和
0 行删除
trunk/src/app/srs_app_refer.cpp
trunk/src/app/srs_app_refer.hpp
trunk/src/app/srs_app_refer.cpp
查看文件 @
efed343
...
...
@@ -27,6 +27,14 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <srs_kernel_log.hpp>
#include <srs_app_config.hpp>
SrsRefer
::
SrsRefer
()
{
}
SrsRefer
::~
SrsRefer
()
{
}
int
SrsRefer
::
check
(
std
::
string
page_url
,
SrsConfDirective
*
refer
)
{
int
ret
=
ERROR_SUCCESS
;
...
...
trunk/src/app/srs_app_refer.hpp
查看文件 @
efed343
...
...
@@ -36,6 +36,9 @@ class SrsConfDirective;
class
SrsRefer
{
public
:
SrsRefer
();
virtual
~
SrsRefer
();
public
:
/**
* to check the refer.
* @param page_url the client page url.
...
...
请
注册
或
登录
后发表评论