2005-09-21 Paul Jakma <paul.jakma@sun.com>

* memtypes.{c,h}: Add MTYPE_AS_SEG_DATA.
This commit is contained in:
paul 2005-09-21 14:06:35 +00:00
parent 319572cc52
commit 75b2dd025a
3 changed files with 7 additions and 1 deletions

View 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.

View 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" },

View 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,