1998-10-18 12:50:43 +00:00
|
|
|
/*
|
|
|
|
* BIRD -- Unix Kernel Route Syncer -- Setting Parameters
|
|
|
|
*
|
1999-02-05 21:38:50 +00:00
|
|
|
* (c) 1998--1999 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_SET_H_
|
|
|
|
#define _BIRD_KRT_SET_H_
|
|
|
|
|
|
|
|
struct krt_set_params {
|
|
|
|
};
|
|
|
|
|
1999-02-05 21:38:50 +00:00
|
|
|
struct krt_set_status {
|
|
|
|
};
|
|
|
|
|
1998-12-08 16:20:13 +00:00
|
|
|
void krt_remove_route(rte *old);
|
|
|
|
void krt_add_route(rte *new);
|
|
|
|
int krt_capable(rte *e);
|
1999-02-05 21:38:50 +00:00
|
|
|
void krt_set_notify(struct proto *x, net *net, rte *new, rte *old);
|
1998-10-19 17:52:29 +00:00
|
|
|
|
1998-10-18 12:50:43 +00:00
|
|
|
#endif
|