diff options
author | paul <paul> | 2003-06-22 08:23:01 +0000 |
---|---|---|
committer | paul <paul> | 2003-06-22 08:23:01 +0000 |
commit | 8ab285ade3cb4554923e91c11ae61c45c16a1933 (patch) | |
tree | 2412de36ca51e5075cbdc67b8f1662d9826d677f | |
parent | d738d098c48027f0f46bf044b56ad5fe67caf522 (diff) | |
download | quagga-8ab285ade3cb4554923e91c11ae61c45c16a1933.tar.bz2 quagga-8ab285ade3cb4554923e91c11ae61c45c16a1933.tar.xz |
2003-06-19 Paul Jakma <paul@dishone.st>
* ospf_lsa.h: elaborate on comment for ROUTER_LSA_NT
add IS_ROUTER_LSA_NT macro.
-rw-r--r-- | ospfd/ospf_lsa.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ospfd/ospf_lsa.h b/ospfd/ospf_lsa.h index b12feebc..54c88d46 100644 --- a/ospfd/ospf_lsa.h +++ b/ospfd/ospf_lsa.h @@ -124,13 +124,14 @@ struct ospf_lsa #define ROUTER_LSA_BORDER 0x01 /* The router is an ABR */ #define ROUTER_LSA_EXTERNAL 0x02 /* The router is an ASBR */ #define ROUTER_LSA_VIRTUAL 0x04 /* The router has a VL in this area */ -#define ROUTER_LSA_NT 0x10 /* NSSA-specific flag */ +#define ROUTER_LSA_NT 0x10 /* The routers always translates Type-7 */ #define ROUTER_LSA_SHORTCUT 0x20 /* Shortcut-ABR specific flag */ #define IS_ROUTER_LSA_VIRTUAL(x) ((x)->flags & ROUTER_LSA_VIRTUAL) #define IS_ROUTER_LSA_EXTERNAL(x) ((x)->flags & ROUTER_LSA_EXTERNAL) #define IS_ROUTER_LSA_BORDER(x) ((x)->flags & ROUTER_LSA_BORDER) #define IS_ROUTER_LSA_SHORTCUT(x) ((x)->flags & ROUTER_LSA_SHORTCUT) +#define IS_ROUTER_LSA_NT(x) ((x)->flags & ROUTER_LSA_NT) /* OSPF Router-LSA Link information. */ struct router_lsa_link |