1998-10-18 20:50:43 +08:00
|
|
|
/*
|
1999-03-04 03:49:56 +08:00
|
|
|
* BIRD -- Unix Kernel Route Syncer -- Setting
|
1998-10-18 20:50:43 +08:00
|
|
|
*
|
2000-01-18 18:39:30 +08:00
|
|
|
* (c) 1998--2000 Martin Mares <mj@ucw.cz>
|
1998-10-18 20:50:43 +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_
|
|
|
|
|
|
|
|
struct krt_set_params {
|
|
|
|
};
|
|
|
|
|
1999-02-06 05:38:50 +08:00
|
|
|
struct krt_set_status {
|
|
|
|
};
|
|
|
|
|
2000-01-18 18:39:30 +08:00
|
|
|
static inline int krt_set_params_same(struct krt_set_params *o, struct krt_set_params *n) { return 1; }
|
|
|
|
|
1998-10-18 20:50:43 +08:00
|
|
|
#endif
|