Contiki 3.x
|
Code for the simple-udp module.More...
Go to the source code of this file.
Functions | |
int | simple_udp_send (struct simple_udp_connection *c, const void *data, uint16_t datalen) |
Send a UDP packet. More... | |
int | simple_udp_sendto (struct simple_udp_connection *c, const void *data, uint16_t datalen, const uip_ipaddr_t *to) |
Send a UDP packet to a specified IP address. More... | |
int | simple_udp_sendto_port (struct simple_udp_connection *c, const void *data, uint16_t datalen, const uip_ipaddr_t *to, uint16_t to_port) |
Send a UDP packet to a specified IP address and UDP port. More... | |
int | simple_udp_register (struct simple_udp_connection *c, uint16_t local_port, uip_ipaddr_t *remote_addr, uint16_t remote_port, simple_udp_callback receive_callback) |
Register a UDP connection. More... | |
Code for the simple-udp module.
Definition in file simple-udp.c.