1999-03-04 03:49:56 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- Unix Kernel Netlink Route Syncer -- Dummy Include File
|
|
|
|
*
|
2000-01-18 18:39:30 +08:00
|
|
|
* (c) 1998--2000 Martin Mares <mj@ucw.cz>
|
1999-03-04 03:49:56 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_KRT_SET_H_
|
|
|
|
#define _BIRD_KRT_SET_H_
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We don't have split iface/scan/set parts. See krt-scan.h.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct krt_set_params {
|
|
|
|
};
|
|
|
|
|
|
|
|
struct krt_set_status {
|
|
|
|
};
|
|
|
|
|
2004-06-05 17:11:07 +08:00
|
|
|
static inline void krt_set_construct(struct krt_config *c UNUSED) { };
|
|
|
|
static inline void krt_set_start(struct krt_proto *p UNUSED, int first UNUSED) { };
|
|
|
|
static inline void krt_set_shutdown(struct krt_proto *p UNUSED, int last UNUSED) { };
|
|
|
|
static inline int krt_set_params_same(struct krt_set_params *o UNUSED, struct krt_set_params *n UNUSED) { return 1; }
|
2011-11-07 07:31:23 +08:00
|
|
|
static inline void krt_set_copy_params(struct krt_set_params *d UNUSED, struct krt_set_params *s UNUSED) { }
|
1999-03-04 03:49:56 +08:00
|
|
|
|
|
|
|
#endif
|