Home
last modified time | relevance | path

Searched refs:MHD_WebSocketStream (Results 1 – 6 of 6) sorted by relevance

/dports/www/libmicrohttpd/libmicrohttpd-0.9.74/src/include/
H A Dmicrohttpd_ws.h49 struct MHD_WebSocketStream;
721 MHD_websocket_stream_init (struct MHD_WebSocketStream **ws,
774 MHD_websocket_stream_free (struct MHD_WebSocketStream *ws);
846 MHD_websocket_decode (struct MHD_WebSocketStream *ws,
923 MHD_websocket_encode_text (struct MHD_WebSocketStream *ws,
987 MHD_websocket_encode_ping (struct MHD_WebSocketStream *ws,
1020 MHD_websocket_encode_pong (struct MHD_WebSocketStream *ws,
1062 MHD_websocket_encode_close (struct MHD_WebSocketStream *ws,
1080 MHD_websocket_malloc (struct MHD_WebSocketStream *ws,
1097 MHD_websocket_realloc (struct MHD_WebSocketStream *ws,
[all …]
/dports/www/libmicrohttpd/libmicrohttpd-0.9.74/src/microhttpd_ws/
H A Dmhd_websocket.c31 struct MHD_WebSocketStream struct
159 MHD_websocket_encode_data (struct MHD_WebSocketStream *ws,
538 MHD_websocket_stream_init (struct MHD_WebSocketStream **ws, in MHD_websocket_stream_init()
585 struct MHD_WebSocketStream *ws_ = (struct MHD_WebSocketStream *) malloc ( in MHD_websocket_stream_init2()
586 sizeof (struct MHD_WebSocketStream)); in MHD_websocket_stream_init2()
591 memset (ws_, 0, sizeof (struct MHD_WebSocketStream)); in MHD_websocket_stream_init2()
612 MHD_websocket_stream_free (struct MHD_WebSocketStream *ws) in MHD_websocket_stream_free()
666 MHD_websocket_decode (struct MHD_WebSocketStream *ws, in MHD_websocket_decode()
2345 MHD_websocket_malloc (struct MHD_WebSocketStream *ws, in MHD_websocket_malloc()
2361 MHD_websocket_realloc (struct MHD_WebSocketStream *ws, in MHD_websocket_realloc()
[all …]
H A Dtest_websocket.c145 struct MHD_WebSocketStream *ws = NULL; in test_decode_single()
303 struct MHD_WebSocketStream *ws; in test_inits()
5207 struct MHD_WebSocketStream *wss; in test_encodes_text()
5208 struct MHD_WebSocketStream *wsc; in test_encodes_text()
6564 struct MHD_WebSocketStream *wss; in test_encodes_binary()
6565 struct MHD_WebSocketStream *wsc; in test_encodes_binary()
7265 struct MHD_WebSocketStream *wss; in test_encodes_close()
7266 struct MHD_WebSocketStream *wsc; in test_encodes_close()
8018 struct MHD_WebSocketStream *wss; in test_encodes_ping()
8019 struct MHD_WebSocketStream *wsc; in test_encodes_ping()
[all …]
/dports/www/libmicrohttpd/libmicrohttpd-0.9.74/doc/
H A Dlibmicrohttpd.texi1782 @deftp {C Struct} MHD_WebSocketStream
4094 @deftypefun {enum MHD_WEBSOCKET_STATUS} MHD_websocket_stream_init (struct MHD_WebSocketStream **ws,…
4101 @code{struct MHD_WebSocketStream},
4129 @code{struct MHD_WebSocketStream},
4176 @deftypefun {enum MHD_WEBSOCKET_STATUS} MHD_websocket_stream_free (struct MHD_WebSocketStream *ws)
4190 @deftypefun {enum MHD_WEBSOCKET_STATUS} MHD_websocket_stream_invalidate (struct MHD_WebSocketStream
4206 @deftypefun {enum MHD_WEBSOCKET_VALIDITY} MHD_websocket_stream_is_valid (struct MHD_WebSocketStream
4438 @deftypefun {enum MHD_WEBSOCKET_STATUS} MHD_websocket_encode_ping (struct MHD_WebSocketStream* ws, …
4567 @deftypefun {void*} MHD_websocket_malloc (struct MHD_WebSocketStream* ws, size_t buf_len)
4586 @deftypefun {void*} MHD_websocket_realloc (struct MHD_WebSocketStream* ws, void* buf, size_t new_bu…
[all …]
H A Dlibmicrohttpd-tutorial.info2354 require a pointer to a 'struct MHD_WebSocketStream' passed as argument.
2357 need a unique 'struct MHD_WebSocketStream' to encode/decode with this
2360 To create or destroy 'struct MHD_WebSocketStream' we have additional
2364 'struct MHD_WebSocketStream'. You can specify some options here to
2368 MHD_WebSocketStream'.
2387 struct MHD_WebSocketStream* ws;
5377 struct MHD_WebSocketStream *ws;
/dports/www/libmicrohttpd/libmicrohttpd-0.9.74/src/examples/
H A Dwebsocket_chatserver_example.c633 struct MHD_WebSocketStream *ws;