2012-05-04 14:38:25 +00:00
|
|
|
/*
|
|
|
|
* BIRD -- Linux Kernel Netlink Route Syncer
|
|
|
|
*
|
|
|
|
* (c) 1998--2000 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_KRT_SYS_H_
|
|
|
|
#define _BIRD_KRT_SYS_H_
|
|
|
|
|
|
|
|
|
|
|
|
/* Kernel interfaces */
|
|
|
|
|
|
|
|
struct kif_params {
|
|
|
|
};
|
|
|
|
|
2013-06-29 20:55:41 +00:00
|
|
|
struct kif_state {
|
2012-05-04 14:38:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static inline void kif_sys_init(struct kif_proto *p UNUSED) { }
|
|
|
|
static inline int kif_sys_reconfigure(struct kif_proto *p UNUSED, struct kif_config *n UNUSED, struct kif_config *o UNUSED) { return 1; }
|
|
|
|
|
|
|
|
static inline void kif_sys_preconfig(struct config *c UNUSED) { }
|
|
|
|
static inline void kif_sys_postconfig(struct kif_config *c UNUSED) { }
|
|
|
|
static inline void kif_sys_init_config(struct kif_config *c UNUSED) { }
|
|
|
|
static inline void kif_sys_copy_config(struct kif_config *d UNUSED, struct kif_config *s UNUSED) { }
|
|
|
|
|
2016-10-14 13:37:04 +00:00
|
|
|
static inline struct ifa * kif_get_primary_ip(struct iface *i UNUSED) { return NULL; }
|
2013-11-25 00:21:39 +00:00
|
|
|
|
2012-05-04 14:38:25 +00:00
|
|
|
|
|
|
|
/* Kernel routes */
|
|
|
|
|
2016-08-30 10:43:46 +00:00
|
|
|
#define KRT_ALLOW_MERGE_PATHS 1
|
|
|
|
|
2012-05-04 14:38:25 +00:00
|
|
|
struct krt_params {
|
2015-11-03 13:42:41 +00:00
|
|
|
u32 table_id; /* Kernel table ID we sync with */
|
2016-09-15 12:59:06 +00:00
|
|
|
u32 metric; /* Kernel metric used for all routes */
|
2022-01-17 04:11:29 +00:00
|
|
|
uint netlink_rx_buffer; /* Rx buffer size for the netlink socket */
|
2012-05-04 14:38:25 +00:00
|
|
|
};
|
|
|
|
|
2013-06-29 20:55:41 +00:00
|
|
|
struct krt_state {
|
2015-11-03 13:42:41 +00:00
|
|
|
struct krt_proto *hash_next;
|
2012-05-04 14:38:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static inline void krt_sys_init(struct krt_proto *p UNUSED) { }
|
2015-11-03 13:42:41 +00:00
|
|
|
static inline void krt_sys_preconfig(struct config *c UNUSED) { }
|
|
|
|
static inline void krt_sys_postconfig(struct krt_config *x UNUSED) { }
|
2012-05-04 14:38:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|