diff options
| author | Russ White <russ@riw.us> | 2017-06-19 22:00:57 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-19 22:00:57 -0400 |
| commit | 4ce856eef75a7c2f5b8d778bafb5c12beef6cb76 (patch) | |
| tree | f7b2422e035306386dd7bbadea9e74f5c799efdc /lib/mpls.h | |
| parent | ea52147f107a7c6e90c33ba358017d75f051419f (diff) | |
| parent | 129296682ff184e9a9057d434e3ea4cc20a18558 (diff) | |
Merge pull request #698 from dslicenc/cm16737-srgb-block
zebra: define default segment routing global block values
Diffstat (limited to 'lib/mpls.h')
| -rw-r--r-- | lib/mpls.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/mpls.h b/lib/mpls.h index 6cf0142755..c963e55087 100644 --- a/lib/mpls.h +++ b/lib/mpls.h @@ -40,6 +40,10 @@ #define MPLS_MIN_UNRESERVED_LABEL 16 #define MPLS_MAX_UNRESERVED_LABEL 1048575 +/* Default min and max SRGB label range */ +#define MPLS_DEFAULT_MIN_SRGB_LABEL 16000 +#define MPLS_DEFAULT_MAX_SRGB_LABEL 23999 + #define IS_MPLS_RESERVED_LABEL(label) \ (label >= MPLS_MIN_RESERVED_LABEL && label <= MPLS_MAX_RESERVED_LABEL) |
