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
e3751d29
Commit
e3751d29
authored
Dec 18, 2013
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made mongoose send websocket PINGs automatically
parent
04b9ccca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
7 deletions
+17
-7
mongoose.c
mongoose.c
+17
-7
No files found.
mongoose.c
View file @
e3751d29
...
@@ -134,6 +134,7 @@ struct linked_list_link { struct linked_list_link *prev, *next; };
...
@@ -134,6 +134,7 @@ struct linked_list_link { struct linked_list_link *prev, *next; };
#define MAX_CGI_ENVIR_VARS 64
#define MAX_CGI_ENVIR_VARS 64
#define ENV_EXPORT_TO_CGI "MONGOOSE_CGI"
#define ENV_EXPORT_TO_CGI "MONGOOSE_CGI"
#define PASSWORDS_FILE_NAME ".htpasswd"
#define PASSWORDS_FILE_NAME ".htpasswd"
#define WEBSOCKET_PING_INTERVAL_SECONDS 5
// Extra HTTP headers to send in every static file reply
// Extra HTTP headers to send in every static file reply
#if !defined(EXTRA_HTTP_HEADERS)
#if !defined(EXTRA_HTTP_HEADERS)
...
@@ -220,7 +221,7 @@ struct connection {
...
@@ -220,7 +221,7 @@ struct connection {
union
endpoint
endpoint
;
union
endpoint
endpoint
;
enum
endpoint_type
endpoint_type
;
enum
endpoint_type
endpoint_type
;
time_t
birth_time
;
time_t
birth_time
;
time_t
expire
_time
;
time_t
last_activity
_time
;
char
*
path_info
;
char
*
path_info
;
char
*
request
;
char
*
request
;
int64_t
num_bytes_sent
;
// Total number of bytes sent
int64_t
num_bytes_sent
;
// Total number of bytes sent
...
@@ -432,6 +433,7 @@ static void send_http_error(struct connection *conn, int code) {
...
@@ -432,6 +433,7 @@ static void send_http_error(struct connection *conn, int code) {
switch
(
code
)
{
switch
(
code
)
{
case
201
:
message
=
"Created"
;
break
;
case
201
:
message
=
"Created"
;
break
;
case
204
:
message
=
"No Content"
;
break
;
case
204
:
message
=
"No Content"
;
break
;
case
304
:
message
=
"Not Modified"
;
break
;
case
400
:
message
=
"Bad Request"
;
break
;
case
400
:
message
=
"Bad Request"
;
break
;
case
403
:
message
=
"Forbidden"
;
break
;
case
403
:
message
=
"Forbidden"
;
break
;
case
404
:
message
=
"Not Found"
;
break
;
case
404
:
message
=
"Not Found"
;
break
;
...
@@ -1474,6 +1476,14 @@ static void send_websocket_handshake_if_requested(struct mg_connection *conn) {
...
@@ -1474,6 +1476,14 @@ static void send_websocket_handshake_if_requested(struct mg_connection *conn) {
send_websocket_handshake
(
conn
,
key
);
send_websocket_handshake
(
conn
,
key
);
}
}
}
}
static
void
ping_idle_websocket_connection
(
struct
connection
*
conn
,
time_t
t
)
{
if
(
t
-
conn
->
last_activity_time
>
WEBSOCKET_PING_INTERVAL_SECONDS
)
{
mg_websocket_write
(
&
conn
->
mg_conn
,
0x9
,
""
,
0
);
}
}
#else
#define ping_idle_websocket_connection(conn, t)
#endif // !NO_WEBSOCKET
#endif // !NO_WEBSOCKET
static
int
is_error
(
int
n
)
{
static
int
is_error
(
int
n
)
{
...
@@ -3037,7 +3047,7 @@ void mg_poll_server(struct mg_server *server, int milliseconds) {
...
@@ -3037,7 +3047,7 @@ void mg_poll_server(struct mg_server *server, int milliseconds) {
struct
timeval
tv
;
struct
timeval
tv
;
fd_set
read_set
,
write_set
;
fd_set
read_set
,
write_set
;
sock_t
max_fd
=
-
1
;
sock_t
max_fd
=
-
1
;
time_t
current_time
=
time
(
NULL
),
expire_time
=
current_time
+
time_t
current_time
=
time
(
NULL
),
expire_time
=
current_time
-
atoi
(
server
->
config_options
[
IDLE_TIMEOUT_MS
])
/
1000
;
atoi
(
server
->
config_options
[
IDLE_TIMEOUT_MS
])
/
1000
;
if
(
server
->
listening_sock
==
INVALID_SOCKET
)
return
;
if
(
server
->
listening_sock
==
INVALID_SOCKET
)
return
;
...
@@ -3076,8 +3086,7 @@ void mg_poll_server(struct mg_server *server, int milliseconds) {
...
@@ -3076,8 +3086,7 @@ void mg_poll_server(struct mg_server *server, int milliseconds) {
// Accept new connections
// Accept new connections
if
(
FD_ISSET
(
server
->
listening_sock
,
&
read_set
))
{
if
(
FD_ISSET
(
server
->
listening_sock
,
&
read_set
))
{
while
((
conn
=
accept_new_connection
(
server
))
!=
NULL
)
{
while
((
conn
=
accept_new_connection
(
server
))
!=
NULL
)
{
conn
->
birth_time
=
current_time
;
conn
->
birth_time
=
conn
->
last_activity_time
=
current_time
;
conn
->
expire_time
=
expire_time
;
}
}
}
}
...
@@ -3085,7 +3094,7 @@ void mg_poll_server(struct mg_server *server, int milliseconds) {
...
@@ -3085,7 +3094,7 @@ void mg_poll_server(struct mg_server *server, int milliseconds) {
LINKED_LIST_FOREACH
(
&
server
->
active_connections
,
lp
,
tmp
)
{
LINKED_LIST_FOREACH
(
&
server
->
active_connections
,
lp
,
tmp
)
{
conn
=
LINKED_LIST_ENTRY
(
lp
,
struct
connection
,
link
);
conn
=
LINKED_LIST_ENTRY
(
lp
,
struct
connection
,
link
);
if
(
FD_ISSET
(
conn
->
client_sock
,
&
read_set
))
{
if
(
FD_ISSET
(
conn
->
client_sock
,
&
read_set
))
{
conn
->
expire_time
=
expire
_time
;
conn
->
last_activity_time
=
current
_time
;
read_from_client
(
conn
);
read_from_client
(
conn
);
}
}
if
(
conn
->
endpoint_type
==
EP_CGI
&&
if
(
conn
->
endpoint_type
==
EP_CGI
&&
...
@@ -3093,7 +3102,7 @@ void mg_poll_server(struct mg_server *server, int milliseconds) {
...
@@ -3093,7 +3102,7 @@ void mg_poll_server(struct mg_server *server, int milliseconds) {
read_from_cgi
(
conn
);
read_from_cgi
(
conn
);
}
}
if
(
FD_ISSET
(
conn
->
client_sock
,
&
write_set
))
{
if
(
FD_ISSET
(
conn
->
client_sock
,
&
write_set
))
{
conn
->
expire_time
=
expire
_time
;
conn
->
last_activity_time
=
current
_time
;
write_to_client
(
conn
);
write_to_client
(
conn
);
}
}
}
}
...
@@ -3102,7 +3111,8 @@ void mg_poll_server(struct mg_server *server, int milliseconds) {
...
@@ -3102,7 +3111,8 @@ void mg_poll_server(struct mg_server *server, int milliseconds) {
// Close expired connections and those that need to be closed
// Close expired connections and those that need to be closed
LINKED_LIST_FOREACH
(
&
server
->
active_connections
,
lp
,
tmp
)
{
LINKED_LIST_FOREACH
(
&
server
->
active_connections
,
lp
,
tmp
)
{
conn
=
LINKED_LIST_ENTRY
(
lp
,
struct
connection
,
link
);
conn
=
LINKED_LIST_ENTRY
(
lp
,
struct
connection
,
link
);
if
(
conn
->
flags
&
CONN_CLOSE
||
current_time
>
conn
->
expire_time
)
{
ping_idle_websocket_connection
(
conn
,
current_time
);
if
(
conn
->
flags
&
CONN_CLOSE
||
conn
->
last_activity_time
<
expire_time
)
{
close_conn
(
conn
);
close_conn
(
conn
);
}
}
}
}
...
...
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