diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2012-04-30 15:31:32 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2012-04-30 15:31:32 +0200 |
commit | 396dfa9042305f62da1f56589c4b98fac57fc2f6 (patch) | |
tree | fcd1bcf1a7b1afe9a98d11018c77ecff68b40f63 /sysdep/unix/krt-set.h | |
parent | 182a78957d60a4c91c1ff8d1ff0f09b1b64b70ba (diff) |
Cleanup in sysdep KRT code, part 1.
OS-dependent functions renamed to be more consistent,
prepared to merge krt-set and krt-scan headers.
Name changes:
struct krt_if_params -> struct kif_params
struct krt_if_status -> struct kif_status
struct krt_set/scan_params -> struct krt_params
struct krt_set/scan_status -> struct krt_status
krt_if_params_same -> kif_sys_reconfigure
krt_if_copy_params -> kif_sys_copy_config
krt_set/scan_params_same -> krt_sys_reconfigure
krt_set/scan_copy_params -> krt_sys_copy_config
krt_if_scan -> kif_do_scan
krt_set_notify -> krt_do_notify
krt_scan_fire -> krt_do_scan
krt_if_ -> kif_sys_
krt_scan_ -> krt_sys_
krt_set_ -> krt_sys_
Diffstat (limited to 'sysdep/unix/krt-set.h')
-rw-r--r-- | sysdep/unix/krt-set.h | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/sysdep/unix/krt-set.h b/sysdep/unix/krt-set.h index 87cffcfc..8ef3170e 100644 --- a/sysdep/unix/krt-set.h +++ b/sysdep/unix/krt-set.h @@ -1,5 +1,5 @@ /* - * BIRD -- Unix Kernel Route Syncer -- Setting + * BIRD -- Unix Kernel Route Syncer * * (c) 1998--2000 Martin Mares <mj@ucw.cz> * @@ -9,13 +9,19 @@ #ifndef _BIRD_KRT_SET_H_ #define _BIRD_KRT_SET_H_ -struct krt_set_params { +struct krt_params { }; -struct krt_set_status { +struct krt_status { }; -static inline int krt_set_params_same(struct krt_set_params *o UNUSED, struct krt_set_params *n UNUSED) { return 1; } -static inline void krt_set_copy_params(struct krt_set_params *d UNUSED, struct krt_set_params *s UNUSED) { } + +static inline void krt_sys_init(struct krt_proto *p UNUSED) { } +static inline int krt_sys_reconfigure(struct krt_proto *p UNUSED, struct krt_config *n UNUSED, struct krt_config *o UNUSED) { return 1; } + +static inline void krt_sys_preconfig(struct config *c UNUSED) { } +static inline void krt_sys_postconfig(struct krt_config *c UNUSED) { } +static inline void krt_sys_init_config(struct krt_config *c UNUSED) { } +static inline void krt_sys_copy_config(struct krt_config *d UNUSED, struct krt_config *s UNUSED) { } #endif |