diff options
author | hasso <hasso> | 2004-10-11 15:11:56 +0200 |
---|---|---|
committer | hasso <hasso> | 2004-10-11 15:11:56 +0200 |
commit | f90a5f6f1a6c1c1a4199a87a6202fe3edc9f7520 (patch) | |
tree | 6ab4dd093298c0c8d68b854fc6400374cbd054f2 /isisd/isisd.h | |
parent | Sync with changes in lib. Make more strings const. (diff) | |
download | frr-f90a5f6f1a6c1c1a4199a87a6202fe3edc9f7520.tar.xz frr-f90a5f6f1a6c1c1a4199a87a6202fe3edc9f7520.zip |
Sync isisd with changes in lib.
Diffstat (limited to 'isisd/isisd.h')
-rw-r--r-- | isisd/isisd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/isisd/isisd.h b/isisd/isisd.h index f1093cc2c..c347bf0cb 100644 --- a/isisd/isisd.h +++ b/isisd/isisd.h @@ -90,7 +90,7 @@ struct isis_area struct isis_spftree *spftree6[ISIS_LEVELS]; /* The v4 SPTs */ struct route_table *route_table6; /* IPv6 routes */ #endif - int min_bcast_mtu; + unsigned int min_bcast_mtu; struct list *circuit_list; /* IS-IS circuits */ struct flags flags; struct thread *t_tick; /* LSP walker */ @@ -134,7 +134,7 @@ struct isis_area }; void isis_init (void); -struct isis_area *isis_area_lookup (char *); +struct isis_area *isis_area_lookup (const char *); #define DEBUG_ADJ_PACKETS (1<<0) #define DEBUG_CHECKSUM_ERRORS (1<<1) |