diff options
author | hasso <hasso> | 2005-06-24 08:44:02 +0000 |
---|---|---|
committer | hasso <hasso> | 2005-06-24 08:44:02 +0000 |
commit | 96d46179c518f303537553015fc476743c4056ff (patch) | |
tree | f70bc8bd7d812652c8066638b27dfb82dd87b953 /ospf6d/ospf6_area.h | |
parent | bf82c45df6eb2f39d306f4e1397f44f65c112f4c (diff) | |
download | quagga-96d46179c518f303537553015fc476743c4056ff.tar.bz2 quagga-96d46179c518f303537553015fc476743c4056ff.tar.xz |
* ospf6_abr.[ch], ospf6_area.[ch]: Add area filter-list (in|out)
support and area import and export lists support.
Diffstat (limited to 'ospf6d/ospf6_area.h')
-rw-r--r-- | ospf6d/ospf6_area.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/ospf6d/ospf6_area.h b/ospf6d/ospf6_area.h index 0cee6386..dd33ac47 100644 --- a/ospf6d/ospf6_area.h +++ b/ospf6d/ospf6_area.h @@ -61,6 +61,42 @@ struct ospf6_area struct thread *thread_router_lsa; struct thread *thread_intra_prefix_lsa; u_int32_t router_lsa_size_limit; + + /* Area announce list */ + struct + { + char *name; + struct access_list *list; + } export; +#define EXPORT_NAME(A) (A)->export.name +#define EXPORT_LIST(A) (A)->export.list + + /* Area acceptance list */ + struct + { + char *name; + struct access_list *list; + } import; +#define IMPORT_NAME(A) (A)->import.name +#define IMPORT_LIST(A) (A)->import.list + + /* Type 3 LSA Area prefix-list */ + struct + { + char *name; + struct prefix_list *list; + } plist_in; +#define PREFIX_NAME_IN(A) (A)->plist_in.name +#define PREFIX_LIST_IN(A) (A)->plist_in.list + + struct + { + char *name; + struct prefix_list *list; + } plist_out; +#define PREFIX_NAME_OUT(A) (A)->plist_out.name +#define PREFIX_LIST_OUT(A) (A)->plist_out.list + }; #define OSPF6_AREA_ENABLE 0x01 |