diff options
| author | Russ White <russ@riw.us> | 2017-07-14 09:36:31 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-14 09:36:31 -0400 |
| commit | 805d1ca6b06158ce9f31f77867ef9d293744a95f (patch) | |
| tree | 855a3dca8ef223561892a62f8ef3adef89ff84eb /zebra/debug.h | |
| parent | 28bd1c1158c10268655878d12e5d8f17737de1bb (diff) | |
| parent | 2850f0ea580764393ae1253ef87a57d772dafafd (diff) | |
Merge pull request #809 from donaldsharp/evpn_plus_struct_attr
Evpn plus struct attr
Diffstat (limited to 'zebra/debug.h')
| -rw-r--r-- | zebra/debug.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zebra/debug.h b/zebra/debug.h index 0a50da8176..5687a3516b 100644 --- a/zebra/debug.h +++ b/zebra/debug.h @@ -42,6 +42,8 @@ #define ZEBRA_DEBUG_MPLS 0x01 +#define ZEBRA_DEBUG_VXLAN 0x01 + /* Debug related macro. */ #define IS_ZEBRA_DEBUG_EVENT (zebra_debug_event & ZEBRA_DEBUG_EVENT) @@ -63,6 +65,7 @@ #define IS_ZEBRA_DEBUG_FPM (zebra_debug_fpm & ZEBRA_DEBUG_FPM) #define IS_ZEBRA_DEBUG_NHT (zebra_debug_nht & ZEBRA_DEBUG_NHT) #define IS_ZEBRA_DEBUG_MPLS (zebra_debug_mpls & ZEBRA_DEBUG_MPLS) +#define IS_ZEBRA_DEBUG_VXLAN (zebra_debug_vxlan & ZEBRA_DEBUG_VXLAN) extern unsigned long zebra_debug_event; extern unsigned long zebra_debug_packet; @@ -71,6 +74,7 @@ extern unsigned long zebra_debug_rib; extern unsigned long zebra_debug_fpm; extern unsigned long zebra_debug_nht; extern unsigned long zebra_debug_mpls; +extern unsigned long zebra_debug_vxlan; extern void zebra_debug_init (void); |
