diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-03-02 03:02:52 +0100 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-03-02 03:09:00 +0100 |
commit | fd995a99e438513e7185dda5c97e3ccafe6eef64 (patch) | |
tree | 37eae7bcf0cf22477ac70ac100f6113370d6d7e7 /lib/plist.h | |
parent | Merge pull request #230 from qlyoung/remove-quagga_clkid (diff) | |
download | frr-fd995a99e438513e7185dda5c97e3ccafe6eef64.tar.xz frr-fd995a99e438513e7185dda5c97e3ccafe6eef64.zip |
lib: add stream.h, vty.h, zebra.h to plist.h
Since `afi_t` and `struct vty` are used in plist.h, the appropriate
headers for them should be included.
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'lib/plist.h')
-rw-r--r-- | lib/plist.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/plist.h b/lib/plist.h index 2c6f13a5c..89d9a874f 100644 --- a/lib/plist.h +++ b/lib/plist.h @@ -23,6 +23,11 @@ #ifndef _QUAGGA_PLIST_H #define _QUAGGA_PLIST_H +#include <zebra.h> + +#include "stream.h" +#include "vty.h" + enum prefix_list_type { PREFIX_DENY, |