mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-16 00:00:07 +01:00

This commit is coverity-clean as tested cmake .. -DLWS_WITH_MINIMAL_EXAMPLES=1 -DLWS_WITHOUT_EXTENSIONS=1 -DLWS_WITH_ACME=1 -DLWS_WITH_LWSWS=1 -DLWS_WITH_LIBUV=1 -DLWS_WITH_HTTP2=1 -DLWS_WITHOUT_CLIENT=0 -DLWS_WITHOUT_SERVER=0 -DLWS_UNIX_SOCK=1 -DLWS_WITH_TLS=0 -DLWS_WITH_MBEDTLS=0 -DLWS_WITH_CGI=1 -DCMAKE_BUILD_TYPE=DEBUG -DLWS_WITH_GENERIC_SESSIONS=1 -DLWS_WITH_RANGES=1 -DLWS_ROLE_WS=1 -DLWS_MAX_SMP=16 -DLWS_ROLE_H1=1 -DLWS_WITH_WOLFSSL=0 -DLWS_WITH_LIBEV=0 -DLWS_WITH_LIBEVENT=1
71 lines
2.2 KiB
C
71 lines
2.2 KiB
C
/*
|
|
* libwebsockets - small server side websockets and web server implementation
|
|
*
|
|
* Copyright (C) 2010 - 2018 Andy Green <andy@warmcat.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation:
|
|
* version 2.1 of the License.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301 USA
|
|
*
|
|
* This is included from core/private.h if LWS_WITH_LIBUV
|
|
*/
|
|
|
|
#include <uv.h>
|
|
|
|
/*
|
|
* libuv's async destroy cb means that asking to close something doesn't mean
|
|
* you can destroy it or parent things until after the close completes.
|
|
*
|
|
* So we must reference-count creation and close completions with libuv.
|
|
*
|
|
* All "static" (per-pt or per-context) uv handles must
|
|
*
|
|
* - have their .data set to point to the context
|
|
*
|
|
* - contribute to context->uv_count_static_asset_handles
|
|
* counting
|
|
*/
|
|
#define LWS_UV_REFCOUNT_STATIC_HANDLE_NEW(_x, _ctx) \
|
|
{ uv_handle_t *_uht = (uv_handle_t *)(_x); _uht->data = _ctx; \
|
|
_ctx->count_event_loop_static_asset_handles++; }
|
|
#define LWS_UV_REFCOUNT_STATIC_HANDLE_TO_CONTEXT(_x) \
|
|
((struct lws_context *)((uv_handle_t *)((_x)->data)))
|
|
#define LWS_UV_REFCOUNT_STATIC_HANDLE_DESTROYED(_x) \
|
|
(--(LWS_UV_REFCOUNT_STATIC_HANDLE_TO_CONTEXT(_x)-> \
|
|
count_event_loop_static_asset_handles))
|
|
|
|
struct lws_pt_eventlibs_libuv {
|
|
uv_loop_t *io_loop;
|
|
uv_signal_t signals[8];
|
|
uv_timer_t timeout_watcher;
|
|
uv_timer_t hrtimer;
|
|
uv_idle_t idle;
|
|
};
|
|
|
|
struct lws_context_eventlibs_libuv {
|
|
uv_loop_t loop;
|
|
};
|
|
|
|
struct lws_io_watcher_libuv {
|
|
uv_poll_t watcher;
|
|
};
|
|
|
|
struct lws_signal_watcher_libuv {
|
|
uv_signal_t watcher;
|
|
};
|
|
|
|
extern struct lws_event_loop_ops event_loop_ops_uv;
|
|
|
|
LWS_VISIBLE uv_loop_t *
|
|
lws_uv_getloop(struct lws_context *context, int tsi);
|