Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
e6509411
Commit
e6509411
authored
Aug 23, 2010
by
valenok
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed bad http version handling
parent
d87cd36b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
8 deletions
+12
-8
mongoose.c
mongoose.c
+12
-8
No files found.
mongoose.c
View file @
e6509411
...
...
@@ -2410,9 +2410,7 @@ static bool_t parse_http_request(char *buf, struct mg_request_info *ri) {
if
(
is_valid_http_method
(
ri
->
request_method
)
&&
ri
->
uri
[
0
]
==
'/'
&&
strncmp
(
ri
->
http_version
,
"HTTP/"
,
5
)
==
0
&&
(
strcmp
(
ri
->
http_version
+
5
,
"1.0"
)
==
0
||
strcmp
(
ri
->
http_version
+
5
,
"1.1"
)
==
0
))
{
strncmp
(
ri
->
http_version
,
"HTTP/"
,
5
)
==
0
)
{
ri
->
http_version
+=
5
;
/* Skip "HTTP/" */
parse_http_headers
(
&
buf
,
ri
);
status
=
MG_TRUE
;
...
...
@@ -3498,17 +3496,23 @@ static void process_new_connection(struct mg_connection *conn) {
// Nul-terminate the request cause parse_http_request() uses sscanf
conn
->
buf
[
conn
->
request_len
-
1
]
=
'\0'
;
if
(
parse_http_request
(
conn
->
buf
,
ri
))
{
if
(
!
parse_http_request
(
conn
->
buf
,
ri
))
{
// Do not put garbage in the access log, just send it back to the client
send_http_error
(
conn
,
400
,
"Bad Request"
,
"Can not parse request: [%.*s]"
,
conn
->
data_len
,
conn
->
buf
);
}
else
if
(
strcmp
(
ri
->
http_version
,
"1.0"
)
&&
strcmp
(
ri
->
http_version
,
"1.1"
))
{
// Request seems valid, but HTTP version is strange
send_http_error
(
conn
,
505
,
"HTTP version not supported"
,
""
);
log_access
(
conn
);
}
else
{
// Request is valid, handle it
cl
=
get_header
(
ri
,
"Content-Length"
);
conn
->
content_len
=
cl
==
NULL
?
-
1
:
strtoll
(
cl
,
NULL
,
10
);
conn
->
birth_time
=
time
(
NULL
);
handle_request
(
conn
);
log_access
(
conn
);
discard_current_request_from_buffer
(
conn
);
}
else
{
// Do not put garbage in the access log, just send it back to the client
send_http_error
(
conn
,
400
,
"Bad Request"
,
"Can not parse request: [%.*s]"
,
conn
->
data_len
,
conn
->
buf
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment