bird/sysdep/unix/krt-set.h
Martin Mares 0804525255 Basic kernel routing table syncing implemented. Learning of routes installed
by other programs or the kernel itself is not supported yet, but it's not
needed for development of other protocols.
1998-10-19 17:52:29 +00:00

20 lines
384 B
C

/*
* 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 {
};
void krt_remove_route(net *net, rte *old);
void krt_add_route(net *net, rte *new);
int krt_capable(net *net, rte *e);
#endif