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.
14 lines
552 B
14 lines
552 B
/* -*- P4_16 -*- */ |
|
/* table sizes, register widths, and such */ |
|
#ifndef SETTINGS_P4 |
|
#define SETTINGS_P4 |
|
|
|
#include <core.p4> |
|
#include <v1model.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 */ |
|
|
|
#endif
|
|
|