mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-16 00:00:07 +01:00
61 lines
1.9 KiB
C
61 lines
1.9 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 private-libwebsockets.h if LWS_ROLE_WS
|
||
|
*/
|
||
|
|
||
|
#include <event2/event.h>
|
||
|
|
||
|
struct lws_pt_eventlibs_libevent {
|
||
|
struct event_base *io_loop;
|
||
|
};
|
||
|
|
||
|
struct lws_io_watcher_libevent {
|
||
|
struct event *watcher;
|
||
|
};
|
||
|
|
||
|
struct lws_signal_watcher_libevent {
|
||
|
struct event *watcher;
|
||
|
};
|
||
|
|
||
|
struct lws_context_eventlibs_libevent {
|
||
|
#if defined(LWS_HIDE_LIBEVENT)
|
||
|
void * sigint_cb;
|
||
|
#else
|
||
|
lws_event_signal_cb_t *sigint_cb;
|
||
|
#endif
|
||
|
};
|
||
|
|
||
|
LWS_EXTERN void
|
||
|
lws_libevent_accept(struct lws *new_wsi, lws_sock_file_fd_type desc);
|
||
|
LWS_VISIBLE void
|
||
|
lws_libevent_destroy(struct lws *wsi);
|
||
|
LWS_EXTERN void
|
||
|
lws_libevent_io(struct lws *wsi, int flags);
|
||
|
LWS_EXTERN int
|
||
|
lws_libevent_init_fd_table(struct lws_context *context);
|
||
|
LWS_EXTERN void
|
||
|
lws_libevent_destroyloop(struct lws_context *context, int tsi);
|
||
|
LWS_EXTERN void
|
||
|
lws_libevent_run(const struct lws_context *context, int tsi);
|
||
|
#define LWS_LIBEVENT_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBEVENT)
|
||
|
LWS_EXTERN void lws_feature_status_libevent(const struct lws_context_creation_info *info);
|
||
|
|