libcoap 4.3.5-develop-19cef11
|
API for determining functionality optionally compiled into libcoap. More...
Functions | |
int | coap_af_unix_is_supported (void) |
Check whether socket type AF_UNIX is available. More... | |
int | coap_async_is_supported (void) |
Check whether ASYNC (separate responses) is available. More... | |
int | coap_client_is_supported (void) |
Check whether Client code is available. More... | |
int | coap_dtls_is_supported (void) |
Check whether DTLS is available. More... | |
int | coap_dtls_cid_is_supported (void) |
Check whether (D)TLS CID is available. More... | |
int | coap_dtls_psk_is_supported (void) |
Check whether (D)TLS PSK is available. More... | |
int | coap_dtls_pki_is_supported (void) |
Check whether (D)TLS PKI is available. More... | |
int | coap_dtls_pkcs11_is_supported (void) |
Check whether (D)TLS PKCS11 is available. More... | |
int | coap_dtls_rpk_is_supported (void) |
Check whether (D)TLS RPK is available. More... | |
int | coap_epoll_is_supported (void) |
Determine whether epoll is supported or not. More... | |
int | coap_ipv4_is_supported (void) |
Check whether IPv4 is available. More... | |
int | coap_ipv6_is_supported (void) |
Check whether IPv6 is available. More... | |
int | coap_observe_persist_is_supported (void) |
Check whether Observe Persist is available. More... | |
int | coap_oscore_is_supported (void) |
Check whether OSCORE is available. More... | |
int | coap_proxy_is_supported (void) |
Check whether Proxy code is available. More... | |
int | coap_q_block_is_supported (void) |
Check whether Q-BlockX is available. More... | |
int | coap_server_is_supported (void) |
Check whether Server code is available. More... | |
int | coap_tcp_is_supported (void) |
Check whether TCP is available. More... | |
int | coap_threadsafe_is_supported (void) |
Determine whether libcoap is threadsafe or not. More... | |
int | coap_tls_is_supported (void) |
Check whether TLS is available. More... | |
int | coap_ws_is_supported (void) |
Check whether WebSockets is available. More... | |
int | coap_wss_is_supported (void) |
Check whether Secure WebSockets is available. More... | |
API for determining functionality optionally compiled into libcoap.
int coap_af_unix_is_supported | ( | void | ) |
Check whether socket type AF_UNIX is available.
1
if support for AF_UNIX is available, or 0
otherwise. Definition at line 621 of file coap_net.c.
int coap_async_is_supported | ( | void | ) |
Check whether ASYNC (separate responses) is available.
1
if support for ASYNC is available, or 0
otherwise. Definition at line 231 of file coap_async.c.
int coap_client_is_supported | ( | void | ) |
Check whether Client code is available.
1
if support for Client is available, or 0
otherwise. Definition at line 603 of file coap_net.c.
int coap_dtls_cid_is_supported | ( | void | ) |
Check whether (D)TLS CID is available.
1
if support for (D)TLS CID is available, or 0
otherwise. Definition at line 86 of file coap_notls.c.
int coap_dtls_is_supported | ( | void | ) |
Check whether DTLS is available.
1
if support for DTLS is available, or 0
otherwise. Definition at line 36 of file coap_notls.c.
int coap_dtls_pkcs11_is_supported | ( | void | ) |
Check whether (D)TLS PKCS11 is available.
1
if support for (D)TLS PKCS11 is available, or 0
otherwise. Definition at line 68 of file coap_notls.c.
int coap_dtls_pki_is_supported | ( | void | ) |
Check whether (D)TLS PKI is available.
1
if support for (D)TLS PKI is available, or 0
otherwise. Definition at line 59 of file coap_notls.c.
int coap_dtls_psk_is_supported | ( | void | ) |
Check whether (D)TLS PSK is available.
1
if support for (D)TLS PSK is available, or 0
otherwise. Definition at line 50 of file coap_notls.c.
int coap_dtls_rpk_is_supported | ( | void | ) |
Check whether (D)TLS RPK is available.
1
if support for (D)TLS RPK is available, or 0
otherwise. Definition at line 77 of file coap_notls.c.
int coap_epoll_is_supported | ( | void | ) |
Determine whether epoll is supported or not.
1
if libcoap is compiled with epoll support, 0
if not. Definition at line 567 of file coap_net.c.
int coap_ipv4_is_supported | ( | void | ) |
Check whether IPv4 is available.
1
if support for IPv4 is available, or 0
otherwise. Definition at line 585 of file coap_net.c.
int coap_ipv6_is_supported | ( | void | ) |
Check whether IPv6 is available.
1
if support for IPv6 is available, or 0
otherwise. Definition at line 594 of file coap_net.c.
int coap_observe_persist_is_supported | ( | void | ) |
Check whether Observe Persist is available.
1
if support for Observe Persist is available, or 0
otherwise. Definition at line 24 of file coap_subscribe.c.
int coap_oscore_is_supported | ( | void | ) |
Check whether OSCORE is available.
1
if support for OSCORE is enabled, or 0
otherwise. Definition at line 2195 of file coap_oscore.c.
int coap_proxy_is_supported | ( | void | ) |
Check whether Proxy code is available.
1
if support for Proxy code is enabled, or 0
otherwise. Definition at line 881 of file coap_proxy.c.
int coap_q_block_is_supported | ( | void | ) |
Check whether Q-BlockX is available.
1
if support for Q-BLockX is available, or 0
otherwise. Definition at line 29 of file coap_block.c.
int coap_server_is_supported | ( | void | ) |
Check whether Server code is available.
1
if support for Server is available, or 0
otherwise. Definition at line 612 of file coap_net.c.
int coap_tcp_is_supported | ( | void | ) |
Check whether TCP is available.
1
if support for TCP is enabled, or 0
otherwise. Definition at line 20 of file coap_tcp.c.
int coap_threadsafe_is_supported | ( | void | ) |
Determine whether libcoap is threadsafe or not.
1
if libcoap is compiled with threadsafe support, 0
if not. Definition at line 576 of file coap_net.c.
int coap_tls_is_supported | ( | void | ) |
Check whether TLS is available.
1
if support for TLS is available, or 0
otherwise. Definition at line 41 of file coap_notls.c.
int coap_ws_is_supported | ( | void | ) |