1998-11-30 06:03:58 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- Direct Device Routes
|
|
|
|
*
|
1999-02-06 05:37:34 +08:00
|
|
|
* (c) 1998--1999 Martin Mares <mj@ucw.cz>
|
1998-11-30 06:03:58 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_RT_DEV_H_
|
|
|
|
#define _BIRD_RT_DEV_H_
|
|
|
|
|
1999-02-06 05:37:34 +08:00
|
|
|
struct rt_dev_config {
|
|
|
|
struct proto_config c;
|
2011-11-07 07:31:23 +08:00
|
|
|
list iface_list; /* list of struct iface_patt */
|
2016-04-08 21:10:57 +08:00
|
|
|
int check_link;
|
1998-11-30 06:03:58 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|