15 lines
850 B
Text
15 lines
850 B
Text
/* -*- P4_16 -*- */
|
|
/* table sizes, register widths, and such */
|
|
#ifndef SETTINGS_P4
|
|
#define SETTINGS_P4
|
|
|
|
#define THE_ANSWER_TO_LIFE_THE_UNIVERSE_AND_EVERYTHING 42 /* Important constant */
|
|
#define ROUTING_TABLE_SIZE 64 /* maximum routes per protocol */
|
|
#define ADDRESS_TABLE_SIZE 64 /* maximum number of addresses per protocol */
|
|
#define NDP_TABLE_SIZE 64 /* maximum number of multicast groups */
|
|
#define ICMP6_TABLE_SIZE 64 /* icmp6 handlers */
|
|
#define ICMP_TABLE_SIZE 64 /* icmp6 handlers */
|
|
#define NAT64_TABLE_SIZE 64 /* nat64 and nat46 entries */
|
|
#define TEST_TABLE_SIZE 64 /* nat64 and nat46 entries */
|
|
|
|
#endif
|