diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-01-07 16:03:01 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetwroks.com> | 2016-08-16 17:00:22 +0200 |
commit | 039f3a3495b9b19e486d296de57a8ba46f9a8c87 (patch) | |
tree | 7e99170e3abc58e6a2dad057873330b859c267b3 /tests | |
parent | pimd: don't break with missing SO_BINDTODEVICE (diff) | |
download | frr-039f3a3495b9b19e486d296de57a8ba46f9a8c87.tar.xz frr-039f3a3495b9b19e486d296de57a8ba46f9a8c87.zip |
lib, bgpd, tests: Refactor FILTER_X in zebra.h
lib/zebra.h has FILTER_X #define's. These do not belong there.
Put them in lib/filter.h where they belong.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
(cherry picked from commit 0490729cc033a3483fc6b0ed45085ee249cac779)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/aspath_test.c | 1 | ||||
-rw-r--r-- | tests/bgp_capability_test.c | 1 | ||||
-rw-r--r-- | tests/bgp_mp_attr_test.c | 1 | ||||
-rw-r--r-- | tests/bgp_mpath_test.c | 1 | ||||
-rw-r--r-- | tests/ecommunity_test.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/tests/aspath_test.c b/tests/aspath_test.c index fde12c41c..9d595807f 100644 --- a/tests/aspath_test.c +++ b/tests/aspath_test.c @@ -25,6 +25,7 @@ #include "stream.h" #include "privs.h" #include "queue.h" +#include "filter.h" #include "bgpd/bgpd.h" #include "bgpd/bgp_aspath.h" diff --git a/tests/bgp_capability_test.c b/tests/bgp_capability_test.c index ecabc2f19..73f46b59a 100644 --- a/tests/bgp_capability_test.c +++ b/tests/bgp_capability_test.c @@ -26,6 +26,7 @@ #include "privs.h" #include "memory.h" #include "queue.h" +#include "filter.h" #include "bgpd/bgpd.h" #include "bgpd/bgp_open.h" diff --git a/tests/bgp_mp_attr_test.c b/tests/bgp_mp_attr_test.c index ba619916d..928d69752 100644 --- a/tests/bgp_mp_attr_test.c +++ b/tests/bgp_mp_attr_test.c @@ -26,6 +26,7 @@ #include "privs.h" #include "memory.h" #include "queue.h" +#include "filter.h" #include "bgpd/bgpd.h" #include "bgpd/bgp_attr.h" diff --git a/tests/bgp_mpath_test.c b/tests/bgp_mpath_test.c index bafbef75f..66a718cbe 100644 --- a/tests/bgp_mpath_test.c +++ b/tests/bgp_mpath_test.c @@ -30,6 +30,7 @@ #include "memory.h" #include "zclient.h" #include "queue.h" +#include "filter.h" #include "bgpd/bgpd.h" #include "bgpd/bgp_table.h" diff --git a/tests/ecommunity_test.c b/tests/ecommunity_test.c index 1d4f6a186..9166af614 100644 --- a/tests/ecommunity_test.c +++ b/tests/ecommunity_test.c @@ -25,6 +25,7 @@ #include "privs.h" #include "memory.h" #include "queue.h" +#include "filter.h" #include "bgpd/bgpd.h" #include "bgpd/bgp_ecommunity.h" |