diff options
author | Job Snijders <job@instituut.net> | 2016-11-15 11:00:39 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-01-19 00:38:53 +0100 |
commit | 57d187bc77f5a07fab335cb0949f3f2e77fc7e6c (patch) | |
tree | c52a54284756a6e29d5f5f0a2f9ee0a79f4e3080 /bgpd/bgp_memory.h | |
parent | Merge pull request #73 from opensourcerouting/ldpd-json (diff) | |
download | frr-57d187bc77f5a07fab335cb0949f3f2e77fc7e6c.tar.xz frr-57d187bc77f5a07fab335cb0949f3f2e77fc7e6c.zip |
Support for BGP Large Communities
BGP Large Communities are a novel way to signal information between
networks. An example of a Large Community is: "2914:65400:38016". Large
BGP Communities are composed of three 4-byte integers, separated by a
colon. This is easy to remember and accommodates advanced routing
policies in relation to 4-Byte ASNs.
This feature was developed by:
Keyur Patel <keyur@arrcus.com> (Arrcus, Inc.),
Job Snijders <job@ntt.net> (NTT Communications),
David Lamparter <equinox@opensourcerouting.org>
and Donald Sharp <sharpd@cumulusnetworks.com>
Signed-off-by: Job Snijders <job@ntt.net>
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'bgpd/bgp_memory.h')
-rw-r--r-- | bgpd/bgp_memory.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bgpd/bgp_memory.h b/bgpd/bgp_memory.h index a4ce8b891..341fb235d 100644 --- a/bgpd/bgp_memory.h +++ b/bgpd/bgp_memory.h @@ -108,4 +108,7 @@ DECLARE_MTYPE(ENCAP_TLV) DECLARE_MTYPE(BGP_TEA_OPTIONS) DECLARE_MTYPE(BGP_TEA_OPTIONS_VALUE) +DECLARE_MTYPE(LCOMMUNITY) +DECLARE_MTYPE(LCOMMUNITY_STR) +DECLARE_MTYPE(LCOMMUNITY_VAL) #endif /* _QUAGGA_BGP_MEMORY_H */ |