RetroArch
|
Macros | |
#define | UIP_MEM_SIZE |
#define | UIP_PBUF_POOL_NUM 16 |
#define | UIP_PBUF_POOL_BUFSIZE 1600 |
#define | UIP_PBUF_ROM_NUM 128 |
#define | UIP_STATISTICS |
#define | UIP_LOGGING |
#define | UIP_ERRORING 0 |
#define | UIP_LL_HLEN |
#define | UIP_TCPIP_HLEN 40 |
Functions | |
void | uip_log (const char *filename, int line_nb, char *msg) |
#define UIP_ERRORING 0 |
#define UIP_LL_HLEN |
The link level header length.
This is the offset into the uip_buf where the IP header can be found. For Ethernet, this should be set to 14. For SLIP, this should be set to 0.
#define UIP_LOGGING |
Determines if logging of certain events should be compiled in.
This is useful mostly for debugging. The function uip_log() must be implemented to suit the architecture of the project, if logging is turned on.
#define UIP_MEM_SIZE |
The size of the uIP packet buffer.
The uIP packet buffer should not be smaller than 60 bytes, and does not need to be larger than 1500 bytes. Lower size results in lower TCP throughput, larger size results in higher TCP throughput.
#define UIP_PBUF_POOL_BUFSIZE 1600 |
#define UIP_PBUF_POOL_NUM 16 |
#define UIP_PBUF_ROM_NUM 128 |
#define UIP_STATISTICS |
Determines if statistics support should be compiled in.
The statistics is useful for debugging and to show the user.
#define UIP_TCPIP_HLEN 40 |