]> git.puffer.fish Git - mirror/frr.git/commitdiff
2005-09-21 Paul Jakma <paul.jakma@sun.com>
authorpaul <paul>
Wed, 21 Sep 2005 14:06:35 +0000 (14:06 +0000)
committerpaul <paul>
Wed, 21 Sep 2005 14:06:35 +0000 (14:06 +0000)
* memtypes.{c,h}: Add MTYPE_AS_SEG_DATA.

lib/ChangeLog
lib/memtypes.c
lib/memtypes.h

index 53e1eb2229be584bf3fd978849d78483050b5d60..89d7322bda04129c166a61553e6d07ee9c86c591 100644 (file)
@@ -1,3 +1,7 @@
+2005-09-21 Paul Jakma <paul.jakma@sun.com>
+
+       * memtypes.{c,h}: Add MTYPE_AS_SEG_DATA.
+       
 2005-09-19 Hasso Tepper <hasso at quagga.net>
 
        * str.[ch]: Add strndup() from glibc.
index 9b4ba71c4299af6e09a753ee14cb5bdb87a71cd9..45c07dad858d749ebefd880469b2d46402cf7d88 100644 (file)
@@ -6,7 +6,7 @@
  * The script is sensitive to the format (though not whitespace), see
  * the top of memtypes.awk for more details.
  *
- * $Id: memtypes.c,v 1.6 2005/06/01 11:17:05 paul Exp $
+ * $Id: memtypes.c,v 1.7 2005/09/21 14:06:35 paul Exp $
  */
 
 #include "zebra.h"
@@ -93,6 +93,7 @@ struct memory_list memory_list_bgp[] =
   { MTYPE_ATTR,                        "BGP attribute"                 },
   { MTYPE_AS_PATH,             "BGP aspath"                    },
   { MTYPE_AS_SEG,              "BGP aspath seg"                },
+  { MTYPE_AS_SEG_DATA,         "BGP aspath segment data"       },
   { MTYPE_AS_STR,              "BGP aspath str"                },
   { 0, NULL },
   { MTYPE_BGP_TABLE,           "BGP table"                     },
index 42667f05777d77f57e1219987c726b4c6008c93d..ac913e9368c725b120a2bae169c713b24c4ecfd3 100644 (file)
@@ -75,6 +75,7 @@ enum
   MTYPE_ATTR,
   MTYPE_AS_PATH,
   MTYPE_AS_SEG,
+  MTYPE_AS_SEG_DATA,
   MTYPE_AS_STR,
   MTYPE_BGP_TABLE,
   MTYPE_BGP_NODE,