libcoap 4.3.5-develop-19cef11
|
Internal API for Netif Support. More...
Functions | |
int | coap_netif_available (coap_session_t *session) |
Function interface to check whether netif for session is still available. More... | |
int | coap_netif_available_ep (coap_endpoint_t *endpoint) |
Function interface to check whether netif for endpoint is still available. More... | |
int | coap_netif_dgrm_listen (coap_endpoint_t *endpoint, const coap_address_t *listen_addr) |
Layer function interface for Netif datagram listem (udp). More... | |
int | coap_netif_dgrm_connect (coap_session_t *session, const coap_address_t *local_if, const coap_address_t *server, int default_port) |
Layer function interface for Netif datagram connect (udp). More... | |
ssize_t | coap_netif_dgrm_read (coap_session_t *session, coap_packet_t *packet) |
Function interface for layer data datagram receiving for sessions. More... | |
ssize_t | coap_netif_dgrm_read_ep (coap_endpoint_t *endpoint, coap_packet_t *packet) |
Function interface for layer data datagram receiving for endpoints. More... | |
ssize_t | coap_netif_dgrm_write (coap_session_t *session, const uint8_t *data, size_t datalen) |
Function interface for netif datagram data transmission. More... | |
int | coap_netif_strm_listen (coap_endpoint_t *endpoint, const coap_address_t *listen_addr) |
Layer function interface for Netif stream listem (tcp). More... | |
int | coap_netif_strm_accept (coap_endpoint_t *endpoint, coap_session_t *session, void *extra) |
Layer function interface for Netif stream accept. More... | |
int | coap_netif_strm_connect1 (coap_session_t *session, const coap_address_t *local_if, const coap_address_t *server, int default_port) |
Layer function interface for Netif stream connect (tcp). More... | |
int | coap_netif_strm_connect2 (coap_session_t *session) |
Layer function interface for Netif stream connect (tcp). More... | |
ssize_t | coap_netif_strm_read (coap_session_t *session, uint8_t *data, size_t datalen) |
Function interface for layer data stream receiving. More... | |
ssize_t | coap_netif_strm_write (coap_session_t *session, const uint8_t *data, size_t datalen) |
Function interface for netif stream data transmission. More... | |
void | coap_netif_close (coap_session_t *session) |
Layer function interface for Netif close for a session. More... | |
void | coap_netif_close_ep (coap_endpoint_t *endpoint) |
Layer function interface for Netif close for a endpoint. More... | |
Internal API for Netif Support.
This provides a layer that sits between CoAP/DTLS and Sockets.
int coap_netif_available | ( | coap_session_t * | session | ) |
Function interface to check whether netif for session is still available.
session | Session to check against. |
Definition at line 25 of file coap_netif.c.
int coap_netif_available_ep | ( | coap_endpoint_t * | endpoint | ) |
Function interface to check whether netif for endpoint is still available.
endpoint | Endpoint to check against. |
void coap_netif_close | ( | coap_session_t * | session | ) |
Layer function interface for Netif close for a session.
session | Session to do the netif close on. |
Definition at line 260 of file coap_netif.c.
void coap_netif_close_ep | ( | coap_endpoint_t * | endpoint | ) |
Layer function interface for Netif close for a endpoint.
endpoint | Endpoint to do the netif close on. |
int coap_netif_dgrm_connect | ( | coap_session_t * | session, |
const coap_address_t * | local_if, | ||
const coap_address_t * | server, | ||
int | default_port | ||
) |
Layer function interface for Netif datagram connect (udp).
session | Session to do the connect on. |
local_if | The local interface to bind to or NULL. |
server | The server to connect to. |
default_port | The Port to connect to if not defined. |
1
OK, 0 on failure. int coap_netif_dgrm_listen | ( | coap_endpoint_t * | endpoint, |
const coap_address_t * | listen_addr | ||
) |
Layer function interface for Netif datagram listem (udp).
endpoint | Endpoint to do the listen on. |
listen_addr | The local address to bind. |
1
OK, 0 on failure. ssize_t coap_netif_dgrm_read | ( | coap_session_t * | session, |
coap_packet_t * | packet | ||
) |
Function interface for layer data datagram receiving for sessions.
This function returns the number of bytes that have been read, or -1 on error.
session | Session to receive data on. |
packet | Where to put the received information |
Definition at line 72 of file coap_netif.c.
ssize_t coap_netif_dgrm_read_ep | ( | coap_endpoint_t * | endpoint, |
coap_packet_t * | packet | ||
) |
Function interface for layer data datagram receiving for endpoints.
This function returns the number of bytes that have been read, or -1 on error.
endpoint | Endpoint to receive data on. |
packet | Where to put the received information |
ssize_t coap_netif_dgrm_write | ( | coap_session_t * | session, |
const uint8_t * | data, | ||
size_t | datalen | ||
) |
Function interface for netif datagram data transmission.
This function returns the number of bytes that have been transmitted, or a value less than zero on error.
session | Session to send data on. |
data | The data to send. |
datalen | The actual length of data . |
Definition at line 125 of file coap_netif.c.
int coap_netif_strm_accept | ( | coap_endpoint_t * | endpoint, |
coap_session_t * | session, | ||
void * | extra | ||
) |
Layer function interface for Netif stream accept.
endpoint | Endpoint to to do the accept on. |
session | Session to to do the accept update on. |
extra | Available for use by any underlying network stack. |
1
OK, 0 on failure. int coap_netif_strm_connect1 | ( | coap_session_t * | session, |
const coap_address_t * | local_if, | ||
const coap_address_t * | server, | ||
int | default_port | ||
) |
Layer function interface for Netif stream connect (tcp).
Step 1 - initiate the connection.
session | Session to do the connect on. |
local_if | The local interface to bind to or NULL. |
server | The server to connect to. |
default_port | The Port to connect to if not defined. |
1
OK, 0 on failure. int coap_netif_strm_connect2 | ( | coap_session_t * | session | ) |
Layer function interface for Netif stream connect (tcp).
Step 2 - complete the connection.
session | Session to do the connect complete on. |
1
OK, 0 on failure. int coap_netif_strm_listen | ( | coap_endpoint_t * | endpoint, |
const coap_address_t * | listen_addr | ||
) |
Layer function interface for Netif stream listem (tcp).
endpoint | Endpoint to do the listen on. |
listen_addr | The local address to bind. |
1
OK, 0 on failure. ssize_t coap_netif_strm_read | ( | coap_session_t * | session, |
uint8_t * | data, | ||
size_t | datalen | ||
) |
Function interface for layer data stream receiving.
This function returns the number of bytes that have been read, or -1 on error.
session | Session to receive data on. |
data | The data to receive. |
datalen | The maximum length of data . |
Definition at line 215 of file coap_netif.c.
ssize_t coap_netif_strm_write | ( | coap_session_t * | session, |
const uint8_t * | data, | ||
size_t | datalen | ||
) |
Function interface for netif stream data transmission.
This function returns the number of bytes that have been transmitted, or a value less than zero on error. The number of bytes written may be less than datalen because of congestion control.
session | Session to send data on. |
data | The data to send. |
datalen | The actual length of data . |
Definition at line 236 of file coap_netif.c.