1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-16 00:00:07 +01:00
libwebsockets/plugins/generic-sessions
Andy Green be9fb919d1 context deprecation
1) This makes lwsws run a parent process with the original permissions.
But this process is only able to respond to SIGHUP, it doesn't do anything
else.

2) You can send this parent process a SIGHUP now to cause it to

 - close listening sockets in existing lwsws processes

 - mark those processes as to exit when the number of active connections
   on the falls to zero

 - spawn a fresh child process from scratch, using latest configuration
   file content, latest plugins, etc.  It can now reopen listening sockets
   if it chooses to, or open different listen ports or whatever.

Notes:

1) lws_context_destroy() has been split into two pieces... the reason for
the split is the first part closes the per-vhost protocols, but since
they may have created libuv objects in the per-vhost protocol storage,
these cannot be freed until after the loop has been run.

That's the purpose of the second part of the context destruction,
lws_context_destroy2().

For compatibility, if you are not using libuv, the first part calls the
second part.  However if you are using libuv, you must now call the
second part from your own main.c after the first part.
2016-12-20 14:37:07 +08:00
..
assets per-vhost headers and lwsws conf support 2016-08-27 17:07:06 +08:00
handlers.c lwsgt: fix check against forgot password flow defeating existing pw check 2016-12-20 14:37:07 +08:00
private-lwsgs.h context deprecation 2016-12-20 14:37:07 +08:00
protocol_generic_sessions.c context deprecation 2016-12-20 14:37:07 +08:00
protocol_lws_messageboard.c lws_snprintf 2016-09-15 02:22:57 +08:00
utils.c lws_snprintf 2016-09-15 02:22:57 +08:00