diff options
author | Martin Mares <mj@ucw.cz> | 2000-01-18 12:01:03 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-01-18 12:01:03 +0100 |
commit | 3ea1ba632b3cdb5005a9339fd5e74d5f93631a48 (patch) | |
tree | a14df52aecd4a2fad742f47eed0682fb1044c8a2 /sysdep | |
parent | 54aaa89ada2d048c64a5afd58844bc395b1a3cfe (diff) | |
download | bird-3ea1ba632b3cdb5005a9339fd5e74d5f93631a48.tar bird-3ea1ba632b3cdb5005a9339fd5e74d5f93631a48.zip |
Killed protocol->priority. Protocol startup should be clean and hack-free now.
It seems everything still works (except for disable/enable/restart which hangs
sometimes, but it's another story).
Diffstat (limited to 'sysdep')
-rw-r--r-- | sysdep/unix/krt.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sysdep/unix/krt.c b/sysdep/unix/krt.c index 110ded0..55986f0 100644 --- a/sysdep/unix/krt.c +++ b/sysdep/unix/krt.c @@ -161,7 +161,6 @@ kif_reconfigure(struct proto *p, struct proto_config *new) struct protocol proto_unix_iface = { name: "Device", template: "device%d", - priority: 100, preconfig: kif_preconfig, init: kif_init, start: kif_start, @@ -801,7 +800,6 @@ krt_reconfigure(struct proto *p, struct proto_config *new) struct protocol proto_unix_kernel = { name: "Kernel", template: "kernel%d", - priority: 80, preconfig: krt_preconfig, postconfig: krt_postconfig, init: krt_init, |