Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
e90319a1
Commit
e90319a1
authored
Mar 11, 2020
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http服务器支持OPTIONS命令
parent
2b592780
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
17 行增加
和
3 行删除
+17
-3
src/Http/HttpSession.cpp
+14
-2
src/Http/HttpSession.h
+3
-1
没有找到文件。
src/Http/HttpSession.cpp
查看文件 @
e90319a1
...
...
@@ -53,20 +53,32 @@ HttpSession::~HttpSession() {
TraceP
(
this
);
}
void
HttpSession
::
Handle_Req_OPTIONS
(
int64_t
&
content_len
){
KeyValue
header
;
header
.
emplace
(
"Allow"
,
"GET, POST, OPTIONS"
);
header
.
emplace
(
"Access-Control-Allow-Origin"
,
"*"
);
header
.
emplace
(
"Access-Control-Allow-Credentials"
,
"true"
);
header
.
emplace
(
"Access-Control-Request-Methods"
,
"GET, POST, OPTIONS"
);
header
.
emplace
(
"Access-Control-Request-Headers"
,
"Accept,Accept-Language,Content-Language,Content-Type"
);
sendResponse
(
"200 OK"
,
true
,
nullptr
,
header
);
}
int64_t
HttpSession
::
onRecvHeader
(
const
char
*
header
,
uint64_t
len
)
{
typedef
void
(
HttpSession
::*
HttpCMDHandle
)(
int64_t
&
);
static
unordered_map
<
string
,
HttpCMDHandle
>
s_func_map
;
static
onceToken
token
([]()
{
s_func_map
.
emplace
(
"GET"
,
&
HttpSession
::
Handle_Req_GET
);
s_func_map
.
emplace
(
"POST"
,
&
HttpSession
::
Handle_Req_POST
);
},
nullptr
);
s_func_map
.
emplace
(
"OPTIONS"
,
&
HttpSession
::
Handle_Req_OPTIONS
);
},
nullptr
);
_parser
.
Parse
(
header
);
urlDecode
(
_parser
);
string
cmd
=
_parser
.
Method
();
auto
it
=
s_func_map
.
find
(
cmd
);
if
(
it
==
s_func_map
.
end
())
{
sendResponse
(
"403 Forbidden"
,
true
);
WarnL
<<
"不支持该命令:"
<<
cmd
;
sendResponse
(
"405 Not Allowed"
,
true
);
return
0
;
}
...
...
src/Http/HttpSession.h
查看文件 @
e90319a1
...
...
@@ -108,7 +108,9 @@ protected:
private
:
void
Handle_Req_GET
(
int64_t
&
content_len
);
void
Handle_Req_POST
(
int64_t
&
content_len
);
bool
checkLiveFlvStream
(
const
function
<
void
()
>
&
cb
=
nullptr
);
void
Handle_Req_OPTIONS
(
int64_t
&
content_len
);
bool
checkLiveFlvStream
(
const
function
<
void
()
>
&
cb
=
nullptr
);
bool
checkWebSocket
();
bool
emitHttpEvent
(
bool
doInvoke
);
void
urlDecode
(
Parser
&
parser
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论