diff options
author | jardin <jardin> | 2003-12-23 08:56:18 +0000 |
---|---|---|
committer | jardin <jardin> | 2003-12-23 08:56:18 +0000 |
commit | 9e867fe663c4eb43c36f35067c0dd092e8c83c14 (patch) | |
tree | f29461b6a2dc8c38037dc0cf91e70392f9ed4ab2 /lib/zebra.h | |
parent | eb5d44eb8dcf25a1b328e57d1eabb1f89e3bc59b (diff) |
Merge isisd into the Quagga's framework:
- add privs support
- use misc quagga's definitions
- make it compile"able"
- fix segfault cases related to hostname()
- add debug isis xxx command
This patch has been approved by Paul Jakma.
Diffstat (limited to 'lib/zebra.h')
-rw-r--r-- | lib/zebra.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/zebra.h b/lib/zebra.h index 51bdc88c..997237d2 100644 --- a/lib/zebra.h +++ b/lib/zebra.h @@ -261,8 +261,9 @@ struct in_pktinfo #define ZEBRA_ROUTE_RIPNG 5 #define ZEBRA_ROUTE_OSPF 6 #define ZEBRA_ROUTE_OSPF6 7 -#define ZEBRA_ROUTE_BGP 8 -#define ZEBRA_ROUTE_MAX 9 +#define ZEBRA_ROUTE_ISIS 8 +#define ZEBRA_ROUTE_BGP 9 +#define ZEBRA_ROUTE_MAX 10 /* Zebra's family types. */ #define ZEBRA_FAMILY_IPV4 1 @@ -325,6 +326,7 @@ struct in_pktinfo #define ZEBRA_RIPNG_DISTANCE_DEFAULT 120 #define ZEBRA_OSPF_DISTANCE_DEFAULT 110 #define ZEBRA_OSPF6_DISTANCE_DEFAULT 110 +#define ZEBRA_ISIS_DISTANCE_DEFAULT 115 #define ZEBRA_IBGP_DISTANCE_DEFAULT 200 #define ZEBRA_EBGP_DISTANCE_DEFAULT 20 |