1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

clean unmix declarations and code

Signed-off-by: Andy Green <andy.green@linaro.org>
This commit is contained in:
Andy Green 2014-12-15 15:08:13 +08:00
parent fdde0f0a03
commit 4edb452969

View file

@ -131,16 +131,19 @@ do_ext:
int
lws_change_pollfd(struct libwebsocket *wsi, int _and, int _or)
{
if (!wsi || !wsi->protocol || wsi->position_in_fds_table < 0)
return 1;
struct libwebsocket_context *context = wsi->protocol->owning_server;
if (!context)
return 1;
struct libwebsocket_context *context;
int tid;
int sampled_tid;
struct libwebsocket_pollfd *pfd;
struct libwebsocket_pollargs pa;
if (!wsi || !wsi->protocol || wsi->position_in_fds_table < 0)
return 1;
context = wsi->protocol->owning_server;
if (!context)
return 1;
pfd = &context->fds[wsi->position_in_fds_table];
pa.fd = wsi->sock;