You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
277 B
15 lines
277 B
10 months ago
|
#define IF_TAP 1
|
||
|
#define IF_TUN 2
|
||
|
|
||
|
#define ETHERNET_MIN_FRAME_SIZE 14
|
||
|
#define TUN_MIN_FRAME_SIZE 5
|
||
|
|
||
|
#define MTU_MIN 74
|
||
|
#define MTU_MAX 1522
|
||
|
#define MTU_DEFAULT 329
|
||
|
|
||
|
#define TXQUEUELEN 10
|
||
|
|
||
|
// ARP timings, in seconds
|
||
|
#define ARP_BASE_REACHABLE_TIME 300
|
||
|
#define ARP_RETRANS_TIME 5
|