femtoTCP/config.h
Daniele Lacamera 5c3cd8bf1e
All checks were successful
/ unit_test (push) Successful in 42s
New tree; draft for posix support
2024-11-16 07:34:11 +01:00

14 lines
235 B
C

#ifndef FEMTO_CONFIG_H
#define FEMTO_CONFIG_H
#define ETHERNET
#define LINK_MTU 1536
#define MAX_TCPSOCKETS 4
#define MAX_UDPSOCKETS 2
#define RXBUF_SIZE LINK_MTU * 8
#define TXBUF_SIZE LINK_MTU * 2
#define MAX_NEIGHBORS 16
#endif