Home
last modified time | relevance | path

Searched refs:lws_ss_handle (Results 1 - 25 of 49) sorted by relevance

12

/third_party/libwebsockets/include/libwebsockets/
H A Dlws-secure-streams.h190 struct lws_ss_handle;
459 void *opaque_user_data, struct lws_ss_handle **ppss,
470 lws_ss_destroy(struct lws_ss_handle **ppss);
484 lws_ss_request_tx(struct lws_ss_handle *pss);
500 lws_ss_request_tx_len(struct lws_ss_handle *pss, unsigned long len);
516 lws_ss_client_connect(struct lws_ss_handle *h);
529 lws_ss_get_sequencer(struct lws_ss_handle *h);
569 lws_ss_get_context(struct lws_ss_handle *h);
589 lws_ss_start_timeout(struct lws_ss_handle *h, unsigned int timeout_ms);
599 lws_ss_cancel_timeout(struct lws_ss_handle *
[all...]
H A Dlws-threadpool.h75 struct lws_ss_handle *ss; /**< either wsi or ss must be set */
264 lws_threadpool_get_task_ss(struct lws_ss_handle *ss);
275 lws_threadpool_foreach_task_ss(struct lws_ss_handle *ss, void *user,
H A Dlws-secure-streams-policy.h27 typedef int (*plugin_auth_status_cb)(struct lws_ss_handle *ss, int status);
60 int (*create)(struct lws_ss_handle *ss, void *info,
67 int (*destroy)(struct lws_ss_handle *ss);
71 int (*munge)(struct lws_ss_handle *ss, char *path,
H A Dlws-fault-injection.h220 struct lws_ss_handle;
222 _lws_fi_user_ss_fi(struct lws_ss_handle *h, const char *name);
H A Dlws-smd.h156 struct lws_ss_handle;
/third_party/libwebsockets/lib/secure-streams/plugins/ssp-h1url/
H A Dh1url.c16 ssp_h1url_create(struct lws_ss_handle *ss, void *info, plugin_auth_status_cb status) in ssp_h1url_create()
22 ssp_h1url_destroy(struct lws_ss_handle *ss) in ssp_h1url_destroy()
28 ssp_h1url_munge(struct lws_ss_handle *ss, char *path, size_t path_len) in ssp_h1url_munge()
/third_party/libwebsockets/lib/secure-streams/
H A Dsecure-streams.c1357 lws_ss_to_user_object(struct lws_ss_handle *h) in lws_ss_to_user_object()
1547 lws_ss_server_ack(struct lws_ss_handle *h, int nack) in lws_ss_server_ack()
1554 lws_ss_server_foreach_client(struct lws_ss_handle *h, lws_sssfec_cb cb, in lws_ss_server_foreach_client()
1558 struct lws_ss_handle *h = in lws_ss_server_foreach_client()
1559 lws_container_of(d, struct lws_ss_handle, cli_list); in lws_ss_server_foreach_client()
1697 lws_ss_get_context(struct lws_ss_handle *h) in lws_ss_get_context()
1703 lws_ss_rideshare(struct lws_ss_handle *h) in lws_ss_rideshare()
1712 lws_ss_add_peer_tx_credit(struct lws_ss_handle *h, int32_t bump) in lws_ss_add_peer_tx_credit()
1727 lws_ss_get_est_peer_tx_credit(struct lws_ss_handle *h) in lws_ss_get_est_peer_tx_credit()
1764 lws_ss_start_timeout(struct lws_ss_handle *
[all...]
H A Dprivate-lib-secure-streams.h48 typedef struct lws_ss_handle { struct
87 struct lws_ss_handle *h_in_svc;
93 //struct lws_ss_handle *h_sink; /**< sink we are bound to, or NULL */
487 lws_ss_get_handle_metadata(struct lws_ss_handle *h, const char *name);
493 lws_ss_get_handle_instant_metadata(struct lws_ss_handle *h, const char *name);
559 int lws_ss_apply_sigv4(struct lws *wsi, struct lws_ss_handle *h,
565 lws_ss_assert_extant(struct lws_context *cx, int tsi, struct lws_ss_handle *h);
H A Dpolicy-common.c83 lws_ss_set_metadata(struct lws_ss_handle *h, const char *name, in lws_ss_set_metadata()
147 lws_ss_alloc_set_metadata(struct lws_ss_handle *h, const char *name, in lws_ss_alloc_set_metadata()
163 lws_ss_get_metadata(struct lws_ss_handle *h, const char *name, in lws_ss_get_metadata()
222 lws_ss_get_handle_metadata(struct lws_ss_handle *h, const char *name) in lws_ss_get_handle_metadata()
237 lws_ss_get_handle_instant_metadata(struct lws_ss_handle *h, const char *name) in lws_ss_get_handle_instant_metadata()
/third_party/libwebsockets/include/
H A Dlibwebsockets.hxx79 struct lws_ss_handle *m_ss;
109 struct lws_ss_handle *m_ss;
/third_party/libwebsockets/lib/secure-streams/system/auth-sigv4/
H A Dsign.c89 init_sigv4(struct lws *wsi, struct lws_ss_handle *h, struct sigv4 *s) in init_sigv4()
197 struct lws_ss_handle *h, struct sigv4 *s) in build_sign_string()
285 calc_signing_key(struct lws *wsi, struct lws_ss_handle *h, in calc_signing_key()
342 struct lws_ss_handle *h, struct sigv4 *s, in build_auth_string()
393 lws_ss_apply_sigv4(struct lws *wsi, struct lws_ss_handle *h, in lws_ss_apply_sigv4()
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-threads/
H A Dminimal-secure-streams-threads.c44 static struct lws_ss_handle *ss; /* only needed for DO_ILLEGAL_API_THREAD */
77 struct lws_ss_handle *ss;
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-avs/
H A Davs.c27 static struct lws_ss_handle *hss_avs_event, *hss_avs_sync;
32 struct lws_ss_handle *ss;
39 struct lws_ss_handle *ss;
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-seq/
H A Dminimal-secure-streams.c147 struct lws_ss_handle *ss;
217 struct lws_ss_handle *ss;
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-sigv4/
H A Dss-s3-put.h13 struct lws_ss_handle *ss;
H A Dss-s3-main.c173 struct lws_ss_handle *h; in app_system_state_nf()
/third_party/libwebsockets/lib/secure-streams/system/captive-portal-detect/
H A Dcaptive-portal-detect.c30 struct lws_ss_handle *ss;
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-server/
H A Dss-client.c15 struct lws_ss_handle *ss;
/third_party/libwebsockets/lib/core/
H A Dprivate-lib-core.h446 struct lws_ss_handle *ss_cpd;
557 struct lws_ss_handle *hss_fetch_policy;
559 struct lws_ss_handle *hss_auth;
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-alexa/
H A Dalexa.c19 struct lws_ss_handle *hss_avs_event, *hss_avs_sync;
24 struct lws_ss_handle *ss;
40 struct lws_ss_handle *ss;
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-server-raw/
H A Dss-server.c16 struct lws_ss_handle *ss;
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-testsfail/
H A Dminimal-secure-streams-testsfail.c598 struct lws_ss_handle *ss;
717 static struct lws_ss_handle *h; in tests_start_next()
/third_party/libwebsockets/lib/secure-streams/system/fetch-policy/
H A Dfetch-policy.c30 struct lws_ss_handle *ss;
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-metadata/
H A Dminimal-secure-streams.c146 struct lws_ss_handle *ss;
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-wrover-kit/main/
H A Dlws-minimal-esp32.c51 struct lws_ss_handle *ss;

Completed in 20 milliseconds

12