diff options
author | hasso <hasso> | 2005-06-24 10:44:02 +0200 |
---|---|---|
committer | hasso <hasso> | 2005-06-24 10:44:02 +0200 |
commit | 34956b31234b4ca562cb2e27c4d9838c61222ace (patch) | |
tree | 9cdb21958660a7f15dd502f4a5f3e7b736b266dd /ospf6d/ospf6_area.h | |
parent | * ospf6_message.c: Changed to be insensitive to changes of neighbors' (diff) | |
download | frr-34956b31234b4ca562cb2e27c4d9838c61222ace.tar.xz frr-34956b31234b4ca562cb2e27c4d9838c61222ace.zip |
* 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 0cee6386f..dd33ac476 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 |