1998-10-18 19:53:21 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- Unix Routing Table Scanning and Syncing
|
|
|
|
*
|
1999-02-06 05:38:50 +08:00
|
|
|
* (c) 1998--1999 Martin Mares <mj@ucw.cz>
|
1998-10-18 19:53:21 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#define LOCAL_DEBUG
|
|
|
|
|
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "nest/iface.h"
|
|
|
|
#include "nest/route.h"
|
|
|
|
#include "nest/protocol.h"
|
|
|
|
#include "lib/timer.h"
|
|
|
|
|
|
|
|
#include "unix.h"
|
1998-10-18 20:50:43 +08:00
|
|
|
#include "krt.h"
|
1998-10-18 19:53:21 +08:00
|
|
|
|
1999-02-06 05:38:50 +08:00
|
|
|
struct proto_config *cf_krt;
|
1998-12-07 01:40:42 +08:00
|
|
|
|
1999-02-06 05:38:50 +08:00
|
|
|
static int
|
|
|
|
krt_start(struct proto *p)
|
1998-10-18 19:53:21 +08:00
|
|
|
{
|
1999-02-06 05:38:50 +08:00
|
|
|
struct krt_proto *k = (struct krt_proto *) p;
|
|
|
|
|
|
|
|
krt_scan_start(k);
|
|
|
|
krt_set_start(k);
|
|
|
|
krt_if_start(k);
|
|
|
|
return PS_UP;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
krt_shutdown(struct proto *p)
|
|
|
|
{
|
|
|
|
struct krt_proto *k = (struct krt_proto *) p;
|
|
|
|
|
|
|
|
krt_scan_shutdown(k);
|
|
|
|
krt_if_shutdown(k);
|
1999-02-14 04:46:03 +08:00
|
|
|
krt_set_shutdown(k);
|
1999-02-06 05:38:50 +08:00
|
|
|
return PS_DOWN;
|
1998-10-18 19:53:21 +08:00
|
|
|
}
|
|
|
|
|
1999-02-06 05:38:50 +08:00
|
|
|
static void
|
|
|
|
krt_preconfig(struct protocol *x, struct config *c)
|
1998-10-18 19:53:21 +08:00
|
|
|
{
|
1999-02-06 05:38:50 +08:00
|
|
|
struct krt_config *z = proto_config_new(&proto_unix_kernel, sizeof(struct krt_config));
|
|
|
|
|
|
|
|
cf_krt = &z->c;
|
|
|
|
z->c.preference = DEF_PREF_UKR;
|
|
|
|
krt_scan_preconfig(z);
|
|
|
|
krt_set_preconfig(z);
|
|
|
|
krt_if_preconfig(z);
|
1998-10-18 19:53:21 +08:00
|
|
|
}
|
|
|
|
|
1999-02-06 05:38:50 +08:00
|
|
|
static struct proto *
|
|
|
|
krt_init(struct proto_config *c)
|
1998-10-18 19:53:21 +08:00
|
|
|
{
|
1999-02-06 05:38:50 +08:00
|
|
|
struct krt_proto *p = proto_new(c, sizeof(struct krt_proto));
|
1998-10-18 19:53:21 +08:00
|
|
|
|
1999-02-06 05:38:50 +08:00
|
|
|
return &p->p;
|
1998-10-18 19:53:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
struct protocol proto_unix_kernel = {
|
1999-02-06 05:38:50 +08:00
|
|
|
name: "Kernel",
|
|
|
|
preconfig: krt_preconfig,
|
|
|
|
init: krt_init,
|
|
|
|
start: krt_start,
|
|
|
|
shutdown: krt_shutdown,
|
1998-10-18 19:53:21 +08:00
|
|
|
};
|