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
0ff5b5b0
Commit
0ff5b5b0
authored
Oct 14, 2014
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added support for multiple listeners
parent
0c5d9a98
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
9 deletions
+19
-9
mongoose.c
mongoose.c
+19
-9
No files found.
mongoose.c
View file @
0ff5b5b0
...
...
@@ -2614,7 +2614,6 @@ static int should_keep_alive(const struct mg_connection *conn) {
const
char
*
method
=
conn
->
request_method
;
const
char
*
http_version
=
conn
->
http_version
;
const
char
*
header
=
mg_get_header
(
conn
,
"Connection"
);
return
0
;
return
method
!=
NULL
&&
(
!
strcmp
(
method
,
"GET"
)
||
c
->
endpoint_type
==
EP_USER
)
&&
((
header
!=
NULL
&&
!
mg_strcasecmp
(
header
,
"keep-alive"
))
||
...
...
@@ -4947,6 +4946,22 @@ static void set_default_option_values(char **opts) {
}
}
static
const
char
*
add_listener
(
struct
mg_server
*
server
,
char
**
v
,
const
char
*
value
)
{
const
char
*
error_msg
=
NULL
;
struct
ns_connection
*
c
;
if
((
c
=
ns_bind
(
&
server
->
ns_mgr
,
value
,
mg_ev_handler
,
NULL
))
==
NULL
)
{
error_msg
=
"Cannot bind to port"
;
}
else
{
char
buf
[
100
];
ns_sock_to_str
(
c
->
sock
,
buf
,
sizeof
(
buf
),
2
);
free
(
*
v
);
*
v
=
mg_strdup
(
buf
);
}
return
error_msg
;
}
const
char
*
mg_set_option
(
struct
mg_server
*
server
,
const
char
*
name
,
const
char
*
value
)
{
int
ind
=
get_option_index
(
name
);
...
...
@@ -4973,14 +4988,9 @@ const char *mg_set_option(struct mg_server *server, const char *name,
DBG
((
"%s [%s]"
,
name
,
*
v
));
if
(
ind
==
LISTENING_PORT
)
{
struct
ns_connection
*
c
=
ns_bind
(
&
server
->
ns_mgr
,
value
,
mg_ev_handler
,
NULL
);
if
(
c
==
NULL
)
{
error_msg
=
"Cannot bind to port"
;
}
else
{
char
buf
[
100
];
ns_sock_to_str
(
c
->
sock
,
buf
,
sizeof
(
buf
),
2
);
free
(
*
v
);
*
v
=
mg_strdup
(
buf
);
struct
vec
vec
;
while
(
!
error_msg
&&
(
value
=
next_option
(
value
,
&
vec
,
NULL
))
!=
NULL
)
{
error_msg
=
add_listener
(
server
,
v
,
vec
.
ptr
);
}
#ifndef MONGOOSE_NO_FILESYSTEM
}
else
if
(
ind
==
HEXDUMP_FILE
)
{
...
...
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