1998-10-18 12:50:43 +00:00
|
|
|
/*
|
1999-03-03 19:49:56 +00:00
|
|
|
* BIRD -- Linux Kernel Route Syncer -- Scanning
|
1998-10-18 12:50:43 +00:00
|
|
|
*
|
2000-01-18 10:39:30 +00:00
|
|
|
* (c) 1998--2000 Martin Mares <mj@ucw.cz>
|
1998-10-18 12:50:43 +00:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_KRT_SCAN_H_
|
|
|
|
#define _BIRD_KRT_SCAN_H_
|
|
|
|
|
|
|
|
struct krt_scan_params {
|
1999-02-05 21:39:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct krt_scan_status {
|
|
|
|
list temp_ifs; /* Temporary interfaces */
|
1998-10-18 12:50:43 +00:00
|
|
|
};
|
|
|
|
|
2000-01-18 10:39:30 +00:00
|
|
|
static inline int krt_scan_params_same(struct krt_scan_params *o, struct krt_scan_params *n) { return 1; }
|
|
|
|
|
1998-10-18 12:50:43 +00:00
|
|
|
#endif
|