#include "uipopt.h"
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Data Structures | |
| struct | uip_conn |
| Representation of a uIP TCP connection. More... | |
| struct | uip_udp_conn |
| Representation of a uIP UDP connection. More... | |
| struct | uip_stats |
| The structure holding the TCP/IP statistics that are gathered if UIP_STATISTICS is set to 1. More... | |
| struct | uip_eth_addr |
| Representation of a 48-bit Ethernet address. More... | |
Defines | |
| #define | uip_sethostaddr(addr) |
| Set the IP address of this host. | |
| #define | uip_gethostaddr(addr) |
| Get the IP address of this host. | |
| #define | uip_setdraddr(addr) |
| Set the default router's IP address. | |
| #define | uip_setnetmask(addr) |
| Set the netmask. | |
| #define | uip_getdraddr(addr) |
| Get the default router's IP address. | |
| #define | uip_getnetmask(addr) |
| Get the netmask. | |
| #define | uip_input() |
| Process an incoming packet. | |
| #define | uip_periodic(conn) |
| Periodic processing for a connection identified by its number. | |
| #define | uip_periodic_conn(conn) |
| Perform periodic processing for a connection identified by a pointer to its structure. | |
| #define | uip_poll_conn(conn) |
| Reuqest that a particular connection should be polled. | |
| #define | uip_udp_periodic(conn) |
| Periodic processing for a UDP connection identified by its number. | |
| #define | uip_udp_periodic_conn(conn) |
| Periodic processing for a UDP connection identified by a pointer to its structure. | |
| #define | uip_outstanding(conn) |
| #define | uip_datalen() |
| The length of any incoming data that is currently avaliable (if avaliable) in the uip_appdata buffer. | |
| #define | uip_urgdatalen() |
| The length of any out-of-band data (urgent data) that has arrived on the connection. | |
| #define | uip_close() |
| Close the current connection. | |
| #define | uip_abort() |
| Abort the current connection. | |
| #define | uip_stop() |
| Tell the sending host to stop sending data. | |
| #define | uip_stopped(conn) |
| Find out if the current connection has been previously stopped with uip_stop(). | |
| #define | uip_restart() |
| Restart the current connection, if is has previously been stopped with uip_stop(). | |
| #define | uip_udpconnection() |
| Is the current connection a UDP connection? | |
| #define | uip_newdata() |
| Is new incoming data available? | |
| #define | uip_acked() |
| Has previously sent data been acknowledged? | |
| #define | uip_connected() |
| Has the connection just been connected? | |
| #define | uip_closed() |
| Has the connection been closed by the other end? | |
| #define | uip_aborted() |
| Has the connection been aborted by the other end? | |
| #define | uip_timedout() |
| Has the connection timed out? | |
| #define | uip_rexmit() |
| Do we need to retransmit previously data? | |
| #define | uip_poll() |
| Is the connection being polled by uIP? | |
| #define | uip_initialmss() |
| Get the initial maxium segment size (MSS) of the current connection. | |
| #define | uip_mss() |
| Get the current maxium segment size that can be sent on the current connection. | |
| #define | uip_udp_remove(conn) |
| Removed a UDP connection. | |
| #define | uip_udp_bind(conn, port) |
| Bind a UDP connection to a local port. | |
| #define | uip_udp_send(len) |
| Send a UDP datagram of length len on the current connection. | |
| #define | uip_udp_send_conn(len, conn) |
| Construct an UDP datagram in the uip_buf buffer. | |
| #define | uip_ipaddr(addr, addr0, addr1, addr2, addr3) |
| Construct an IP address from four bytes. | |
| #define | uip_ipaddr_copy(dest, src) |
| Copy an IP address to another IP address. | |
| #define | uip_ipaddr_cmp(addr1, addr2) |
| Compare two IP addresses. | |
| #define | uip_ipaddr_maskcmp(addr1, addr2, mask) |
| Compare two IP addresses with netmasks. | |
| #define | uip_ipaddr_mask(dest, src, mask) |
| Mask out the network part of an IP address. | |
| #define | uip_ipaddr1(addr) |
| Pick the first octet of an IP address. | |
| #define | uip_ipaddr2(addr) |
| Pick the second octet of an IP address. | |
| #define | uip_ipaddr3(addr) |
| Pick the third octet of an IP address. | |
| #define | uip_ipaddr4(addr) |
| Pick the fourth octet of an IP address. | |
| #define | HTONS(n) |
| Convert 16-bit quantity from host byte order to network byte order. | |
| #define | UIP_APPDATA_SIZE |
| The buffer size available for user data in the uip_buf buffer. | |
Typedefs | |
| typedef u16_t | uip_ipaddr_t [2] |
| Repressentation of an IP address. | |
Functions | |
| void | uip_init (void) |
| uIP initialization function. | |
| void | uip_listen (u16_t port) |
| Start listening to the specified port. | |
| void | uip_unlisten (u16_t port) |
| Stop listening to the specified port. | |
| uip_conn * | uip_connect (uip_ipaddr_t *ripaddr, u16_t port) |
| Connect to a remote host using TCP. | |
| void | uip_send (const char *data, int len) |
| Send data on the current connection. | |
| uip_udp_conn * | uip_udp_new (uip_ipaddr_t *ripaddr, u16_t rport) |
| Set up a new UDP connection. | |
| u16_t | htons (u16_t val) |
| Convert 16-bit quantity from host byte order to network byte order. | |
| u16_t | uip_chksum (u16_t *buf, u16_t len) |
| Calculate the Internet checksum over a buffer. | |
| u16_t | uip_ipchksum (void) |
| Calculate the IP header checksum of the packet header in uip_buf. | |
| u16_t | uip_tcpchksum (void) |
| Calculate the TCP checksum of the packet in uip_buf and uip_appdata. | |
Variables | |
| u8_t | uip_buf [UIP_BUFSIZE+2] |
| The uIP packet buffer. | |
| u8_t * | uip_appdata |
| Pointer to the application data in the packet buffer. | |
| u8_t | uip_acc32 [4] |
| 4-byte array used for the 32-bit sequence number calculations. | |
| uip_stats | uip_stat |
| The uIP TCP/IP statistics. | |
1.3.6