diff options
author | hasso <hasso> | 2004-09-24 10:45:28 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-09-24 10:45:28 +0000 |
commit | 31fde9a7c95b9aef3f9b299909f74a60bb2b890f (patch) | |
tree | 2a45b8bd1a9471f70274bf0c68f566c4ec2b2d5e /isisd/isis_misc.c | |
parent | 1c4fca726cedd8d79c3e7044462f079320a6b256 (diff) | |
download | quagga-31fde9a7c95b9aef3f9b299909f74a60bb2b890f.tar.bz2 quagga-31fde9a7c95b9aef3f9b299909f74a60bb2b890f.tar.xz |
* isisd.c: thread_master *master is already defined in isis_main.c.
* isis_misc.[c|h], isis_lsp.[c|h]: Move static variables out of header
files.
Diffstat (limited to 'isisd/isis_misc.c')
-rw-r--r-- | isisd/isis_misc.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/isisd/isis_misc.c b/isisd/isis_misc.c index 7fe5286f..51c4d929 100644 --- a/isisd/isis_misc.c +++ b/isisd/isis_misc.c @@ -46,6 +46,21 @@ #include "isisd/isis_constants.h" #include "isisd/isis_adjacency.h" +/* staticly assigned vars for printing purposes */ +struct in_addr new_prefix; +/* len of xxxx.xxxx.xxxx + place for #0 termination */ +char sysid[15]; +/* len of xxxx.xxxx.xxxx + place for #0 termination */ +char snpa[15]; +/* len of xx.xxxx.xxxx.xxxx.xxxx.xxxx.xxxx.xxxx.xxxx.xxxx.xx */ +char isonet[51]; +/* + place for #0 termination */ +/* len of xxxx.xxxx.xxxx.xx.xx + place for #0 termination */ +char lspid[21]; +/* len of xxYxxMxWxdxxhxxmxxs + place for #0 termination */ +char datestring[20]; +char nlpidstring[30]; + /* * This converts the isonet to its printable format */ |