1998-10-18 20:50:43 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- Unix Kernel Route Syncer -- Setting Parameters
|
|
|
|
*
|
|
|
|
* (c) 1998 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* 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 {
|
|
|
|
};
|
|
|
|
|
1998-10-20 01:52:29 +08:00
|
|
|
void krt_remove_route(net *net, rte *old);
|
|
|
|
void krt_add_route(net *net, rte *new);
|
|
|
|
int krt_capable(net *net, rte *e);
|
|
|
|
|
1998-10-18 20:50:43 +08:00
|
|
|
#endif
|