1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Integrated address print lengths

Minor changes by Ondrej Santiago Zajicek
This commit is contained in:
Jan Moskyto Matejka
2015-12-18 11:57:38 +01:00
committed by Ondrej Zajicek (work)
parent 9656dce72e
commit 7fd4143ead
8 changed files with 38 additions and 27 deletions

View File

@@ -33,6 +33,10 @@
#define IP4_MAX_PREFIX_LENGTH 32
#define IP6_MAX_PREFIX_LENGTH 128
#define IP4_MAX_TEXT_LENGTH 15 /* "255.255.255.255" */
#define IP6_MAX_TEXT_LENGTH 39 /* "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff" */
#define IPA_MAX_TEXT_LENGTH 39
#define IP4_MIN_MTU 576
#define IP6_MIN_MTU 1280
@@ -42,12 +46,6 @@
#define IP6_HEADER_LENGTH 40
#define UDP_HEADER_LENGTH 8
#ifdef IPV6
#define STD_ADDRESS_P_LENGTH 39
#else
#define STD_ADDRESS_P_LENGTH 15
#endif
#ifdef DEBUGGING