Searched refs:lws_protocols (Results 1 – 25 of 133) sorted by relevance
123456
/third_party/libwebsockets/include/libwebsockets/ |
D | lws-protocols-plugins.h | 44 struct lws_protocols { struct 99 LWS_VISIBLE LWS_EXTERN const struct lws_protocols * 111 LWS_VISIBLE LWS_EXTERN const struct lws_protocols * 115 LWS_VISIBLE LWS_EXTERN const struct lws_protocols * 130 const struct lws_protocols *prot, int size); 143 const struct lws_protocols *prot); 265 const struct lws_protocols *protocols; /**< array of supported protocols provided by plugin */ 351 extern const struct lws_protocols post_demo_protocols[1]; 352 extern const struct lws_protocols lws_raw_proxy_protocols[1]; 353 extern const struct lws_protocols lws_status_protocols[1]; [all …]
|
D | lws-writeable.h | 74 const struct lws_protocols *protocol); 91 const struct lws_protocols *protocol); 111 const struct lws_protocols *protocol, int reason); 128 const struct lws_protocols *protocol, 148 const struct lws_protocols *protocol,
|
D | lws-context-vhost.h | 280 const struct lws_protocols *protocols; 738 const struct lws_protocols **pprotocols;
|
/third_party/libwebsockets/lib/secure-streams/ |
D | private-lib-secure-streams.h | 576 const struct lws_protocols *protocol; 616 extern const struct lws_protocols protocol_secstream_h1; 617 extern const struct lws_protocols protocol_secstream_h2; 618 extern const struct lws_protocols protocol_secstream_ws; 619 extern const struct lws_protocols protocol_secstream_mqtt; 620 extern const struct lws_protocols protocol_secstream_raw;
|
/third_party/libwebsockets/lib/secure-streams/protocols/ |
D | README.md | 6 ## The lws_protocols callback 8 This is the normal lws struct lws_protocols callback that handles events and 29 - a struct lws_protocols, including a pointer to the callback
|
/third_party/libwebsockets/lib/core-net/ |
D | vhost.c | 56 const struct lws_protocols *available_abstract_protocols[] = { 65 const struct lws_protocols *available_secstream_protocols[] = { 246 const struct lws_protocols *prot, int size) in lws_protocol_vh_priv_zalloc() 287 const struct lws_protocols *prot) in lws_protocol_vh_priv_get() 550 static const struct lws_protocols protocols_dummy[] = { 579 const struct lws_protocols *pcols = info->protocols; in lws_create_vhost() 583 struct lws_protocols *lwsp; in lws_create_vhost() 589 extern struct lws_protocols lws_async_dns_protocol; in lws_create_vhost() 778 lwsp = lws_zalloc(sizeof(struct lws_protocols) * in lws_create_vhost() 798 memcpy(lwsp, pcols, sizeof(struct lws_protocols) * (unsigned int)m); in lws_create_vhost() [all …]
|
D | wsi.c | 152 const struct lws_protocols * 166 const struct lws_protocols *protocol, int reason) in lws_callback_all_protocol() 206 const struct lws_protocols *protocol, int reason, in lws_callback_all_protocol_vhost_args() 232 const struct lws_protocols *protocol, int reason) in lws_callback_all_protocol_vhost() 472 const struct lws_protocols *protocol) in lws_rx_flow_allow_all_protocol() 559 const struct lws_protocols * 591 ((struct lws_protocols *)lws_get_protocol(wsi))->per_session_data_size = in lws_adjust_protocol_psds() 862 const struct lws_protocols *p = v->protocols; in lws_broadcast() 998 const struct lws_protocols * 1214 lws_bind_protocol(struct lws *wsi, const struct lws_protocols *p, in lws_bind_protocol() [all …]
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-alexa/ |
D | main.c | 343 extern struct lws_protocols protocol_audio_test; 344 static const struct lws_protocols *protocols[] = {
|
/third_party/libwebsockets/plugin-standalone/ |
D | protocol_example_standalone.c | 41 const struct lws_protocols *protocol; 127 static const struct lws_protocols protocols[] = {
|
/third_party/libwebsockets/plugins/ |
D | protocol_lws_raw_test.c | 86 const struct lws_protocols *protocol; 286 LWS_VISIBLE const struct lws_protocols lws_raw_test_protocols[] = {
|
D | protocol_lws_status.c | 63 const struct lws_protocols *protocol; 252 LWS_VISIBLE const struct lws_protocols lws_status_protocols[] = {
|
D | protocol_lws_sshd_demo.c | 41 const struct lws_protocols *ssh_base_protocol; 462 LWS_VISIBLE const struct lws_protocols lws_sshd_demo_protocols[] = {
|
/third_party/libwebsockets/plugins/ssh-base/ |
D | telnet.c | 33 const struct lws_protocols *protocol; 253 const struct lws_protocols protocols_telnet[] = {
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-dynamic/ |
D | minimal-http-server-dynamic.c | 218 static const struct lws_protocols defprot = 222 static const struct lws_protocols *pprotocols[] = { &defprot, &protocol, NULL };
|
/third_party/libwebsockets/lib/system/ntpclient/ |
D | ntpclient.c | 34 const struct lws_protocols *protocol; 308 struct lws_protocols lws_system_protocol_ntpc =
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-sse-ring/ |
D | minimal-http-server-sse-ring.c | 54 const struct lws_protocols *protocol; 308 static struct lws_protocols protocols[] = {
|
/third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-tx/ |
D | minimal-ws-client.c | 44 const struct lws_protocols *protocol; 283 static const struct lws_protocols protocols[] = {
|
/third_party/libwebsockets/minimal-examples/client-server/minimal-ws-proxy/ |
D | minimal-ws-proxy.c | 26 static struct lws_protocols protocols[] = {
|
/third_party/libwebsockets/minimal-examples/dbus-server/minimal-dbus-ws-proxy/ |
D | main.c | 27 static struct lws_protocols protocols[] = {
|
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-ring/ |
D | minimal-ws-server-ring.c | 24 static struct lws_protocols protocols[] = {
|
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-broker/ |
D | minimal-ws-broker.c | 24 static struct lws_protocols protocols[] = {
|
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-pmd/ |
D | minimal-ws-server-pmd.c | 23 static struct lws_protocols protocols[] = {
|
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-pmd-corner/ |
D | minimal-ws-server-pmd-corner.c | 23 static struct lws_protocols protocols[] = {
|
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-proxy/ |
D | minimal-raw-proxy.c | 23 static struct lws_protocols protocols[] = {
|
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-threads/ |
D | minimal-ws-server.c | 35 static struct lws_protocols protocols[] = {
|
123456