diff options
Diffstat (limited to 'sysdep/unix/krt-set.c')
-rw-r--r-- | sysdep/unix/krt-set.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sysdep/unix/krt-set.c b/sysdep/unix/krt-set.c index 23cbe5c5..252c5d3e 100644 --- a/sysdep/unix/krt-set.c +++ b/sysdep/unix/krt-set.c @@ -79,7 +79,7 @@ krt_ioctl(int ioc, rte *e, char *name) } void -krt_set_notify(struct krt_proto *p, net *net, rte *new, rte *old) +krt_do_notify(struct krt_proto *p, net *net, rte *new, rte *old) { if (old) { @@ -94,18 +94,19 @@ krt_set_notify(struct krt_proto *p, net *net, rte *new, rte *old) } void -krt_set_start(struct krt_proto *x, int first) +krt_sys_start(struct krt_proto *x, int first) { if (if_scan_sock < 0) bug("krt set: missing socket"); } void -krt_set_construct(struct krt_config *c) +krt_sys_shutdown(struct krt_proto *x, int last) { -} +} void -krt_set_shutdown(struct krt_proto *x, int last) +krt_sys_construct(struct krt_config *c) { -} +} + |