diff options
author | paulo <paul@bayleaf.org.uk> | 2010-01-13 17:56:10 +0000 |
---|---|---|
committer | paulo <paul@bayleaf.org.uk> | 2010-01-13 17:56:10 +0000 |
commit | 02e1b449d58345380db15b716391c20db55ed2d6 (patch) | |
tree | 0294e587a5fa352465c2cfb01f745b41ea40aac3 /lib | |
parent | ff5b1c237fd67969ae5317763294bfbecaf655d0 (diff) | |
download | quagga-02e1b449d58345380db15b716391c20db55ed2d6.tar.bz2 quagga-02e1b449d58345380db15b716391c20db55ed2d6.tar.xz |
Knitting it all together. Still not got clean compile. Still lots of
TODOs.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/memtypes.c | 1 | ||||
-rw-r--r-- | lib/mqueue.h | 2 | ||||
-rw-r--r-- | lib/plist.h | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/lib/memtypes.c b/lib/memtypes.c index 96dd8f4a..f8f541de 100644 --- a/lib/memtypes.c +++ b/lib/memtypes.c @@ -174,6 +174,7 @@ struct memory_list memory_list_bgp[] = { MTYPE_BGP_DAMP_ARRAY, "BGP Dampening array" }, { MTYPE_BGP_REGEXP, "BGP regexp" }, { MTYPE_BGP_AGGREGATE, "BGP aggregate" }, + { MTYPE_BGP_OPEN_STATE, "BGP Open State" }, { -1, NULL } }; diff --git a/lib/mqueue.h b/lib/mqueue.h index b1332e68..a4f5d91d 100644 --- a/lib/mqueue.h +++ b/lib/mqueue.h @@ -22,6 +22,8 @@ #ifndef _ZEBRA_MQUEUE_H #define _ZEBRA_MQUEUE_H +#include <stddef.h> + #include "qpthreads.h" #include "qtime.h" diff --git a/lib/plist.h b/lib/plist.h index 97dab78e..0d9e3ecb 100644 --- a/lib/plist.h +++ b/lib/plist.h @@ -26,6 +26,7 @@ #include "prefix.h" #include "symtab.h" #include "vector.h" +#include "vty.h" #define AFI_ORF_PREFIX 65535 |