diff options
author | hasso <hasso> | 2004-09-10 22:48:21 +0200 |
---|---|---|
committer | hasso <hasso> | 2004-09-10 22:48:21 +0200 |
commit | f390d2c7839c04100e4de8246215ce10ea96b653 (patch) | |
tree | 9910d250bfb6605d44e7104ef786ba0c84ddb01a /isisd/isis_flags.h | |
parent | Add IS-IS info into array. (diff) | |
download | frr-f390d2c7839c04100e4de8246215ce10ea96b653.tar.xz frr-f390d2c7839c04100e4de8246215ce10ea96b653.zip |
Indentation only. No any functional changes.
Diffstat (limited to 'isisd/isis_flags.h')
-rw-r--r-- | isisd/isis_flags.h | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/isisd/isis_flags.h b/isisd/isis_flags.h index 66b94848d..f2421f2f4 100644 --- a/isisd/isis_flags.h +++ b/isisd/isis_flags.h @@ -26,13 +26,13 @@ /* The grand plan is to support 1024 circuits so we have 32*32 bit flags * the support will be achived using the newest drafts */ -#define ISIS_MAX_CIRCUITS 32 /* = 1024 */ /*FIXME:defined in lsp.h as well*/ +#define ISIS_MAX_CIRCUITS 32 /* = 1024 */ /*FIXME:defined in lsp.h as well */ -struct flags *new_flags (int size); -int flags_get_index (struct flags *flags); -void flags_free_index (struct flags *flags, int index); +struct flags *new_flags (int size); +int flags_get_index (struct flags *flags); +void flags_free_index (struct flags *flags, int index); -int flags_any_set (u_int32_t *flags); +int flags_any_set (u_int32_t * flags); #define ISIS_SET_FLAG(F,C) \ F[C->idx>>5] |= (1<<(C->idx & 0x1F)); @@ -50,9 +50,3 @@ int flags_any_set (u_int32_t *flags); memset(FLAGS,0x00,ISIS_MAX_CIRCUITS*4); #endif /* _ZEBRA_ISIS_FLAGS_H */ - - - - - - |