Bug #202 ยป 0001-Fix-maximum-payload-size-to-UDP-constraints.patch
alfred.h | ||
---|---|---|
#define debugMalloc(size, num) malloc(size)
|
||
#define debugFree(ptr, num) free(ptr)
|
||
#define MAX_PAYLOAD ((1 << 16) - 1)
|
||
/* UDP packet size is max. 65535, including the UDP header itself */
|
||
#define MAX_PAYLOAD (65535 - 8)
|
||
extern const struct in6_addr in6addr_localmcast;
|
||