diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2015-03-03 08:55:54 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2015-04-21 10:18:01 +0200 |
commit | 388f8857eb81ef75014060976776523a58a99389 (patch) | |
tree | d425f43437cc937f4cd415d3170c8d6c8f6bf33c /lib | |
parent | 21401f3215be26dcb0f787105f5907745498e966 (diff) | |
download | quagga-388f8857eb81ef75014060976776523a58a99389.tar.bz2 quagga-388f8857eb81ef75014060976776523a58a99389.tar.xz |
*: add missing includes
Some places, particularly headers, were spewing warnings since they
don't include neccessary other headers to get struct/enum definitions.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/distribute.h | 1 | ||||
-rw-r--r-- | lib/smux.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lib/distribute.h b/lib/distribute.h index 5072016f..a2ffffd5 100644 --- a/lib/distribute.h +++ b/lib/distribute.h @@ -24,6 +24,7 @@ #include <zebra.h> #include "if.h" +#include "filter.h" /* Disctirubte list types. */ enum distribute_type @@ -25,6 +25,8 @@ #include <net-snmp/agent/net-snmp-agent-includes.h> #include <net-snmp/agent/snmp_vars.h> +#include "thread.h" + /* Structures here are mostly compatible with UCD SNMP 4.1.1 */ #define MATCH_FAILED (-1) #define MATCH_SUCCEEDED 0 |