summaryrefslogtreecommitdiff
path: root/zebra/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'zebra/debug.h')
-rw-r--r--zebra/debug.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/zebra/debug.h b/zebra/debug.h
index 194c945fd8..987f9d0125 100644
--- a/zebra/debug.h
+++ b/zebra/debug.h
@@ -14,10 +14,9 @@
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
- * You should have received a copy of the GNU General Public License
- * along with GNU Zebra; see the file COPYING. If not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * You should have received a copy of the GNU General Public License along
+ * with this program; see the file COPYING; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _ZEBRA_DEBUG_H
@@ -43,6 +42,8 @@
#define ZEBRA_DEBUG_MPLS 0x01
+#define ZEBRA_DEBUG_VXLAN 0x01
+
#define ZEBRA_DEBUG_PW 0x01
/* Debug related macro. */
@@ -66,6 +67,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)
#define IS_ZEBRA_DEBUG_PW (zebra_debug_pw & ZEBRA_DEBUG_PW)
extern unsigned long zebra_debug_event;
@@ -75,6 +77,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 unsigned long zebra_debug_pw;
extern void zebra_debug_init(void);