diff options
author | hasso <hasso> | 2004-09-10 20:48:21 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-09-10 20:48:21 +0000 |
commit | 3146b840da301e17a37a9d453fe9de1c83bbb9a6 (patch) | |
tree | e10ee67269546dd7513d045e3ce5dd7d6517e429 /isisd/isis_flags.h | |
parent | 787909a895758a866dc92c46c797f074d9d3015c (diff) | |
download | quagga-3146b840da301e17a37a9d453fe9de1c83bbb9a6.tar.bz2 quagga-3146b840da301e17a37a9d453fe9de1c83bbb9a6.tar.xz |
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 66b94848..f2421f2f 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 */ - - - - - - |