summaryrefslogtreecommitdiffstats
path: root/sysdep/linux/netlink/krt.h
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1999-03-01 21:17:46 +0100
committerMartin Mares <mj@ucw.cz>1999-03-01 21:17:46 +0100
commitbdb95a21a45bce1754bf54de3e7423cf8eebf9ee (patch)
tree32f66b3d3b611949606532eba92d542073b39df0 /sysdep/linux/netlink/krt.h
parentea3582a6f66223dfd2c0dd6c597dc40b48033fd5 (diff)
downloadbird-bdb95a21a45bce1754bf54de3e7423cf8eebf9ee.tar
bird-bdb95a21a45bce1754bf54de3e7423cf8eebf9ee.zip
Added skeletal version of Linux netlink interface. It doesn't work yet,
but the framework is there and I'll try finish it soon.
Diffstat (limited to 'sysdep/linux/netlink/krt.h')
-rw-r--r--sysdep/linux/netlink/krt.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/sysdep/linux/netlink/krt.h b/sysdep/linux/netlink/krt.h
new file mode 100644
index 0000000..8dd55cc
--- /dev/null
+++ b/sysdep/linux/netlink/krt.h
@@ -0,0 +1,30 @@
+/*
+ * BIRD -- Linux Netlink Interface
+ *
+ * (c) 1999 Martin Mares <mj@ucw.cz>
+ *
+ * Can be freely distributed and used under the terms of the GNU GPL.
+ */
+
+#ifndef _BIRD_NETLINK_KRT_H_
+#define _BIRD_NETLINK_KRT_H_
+
+extern struct protocol proto_unix_kernel;
+
+struct krt_config {
+ struct proto_config c;
+ int persist; /* Keep routes when we exit */
+ int scan_time; /* How often we re-scan interfaces */
+ int route_scan_time; /* How often we re-scan routes */
+ int learn; /* Learn routes from other sources */
+};
+
+extern struct proto_config *cf_krt;
+
+struct krt_proto {
+ struct proto p;
+};
+
+void scan_if_init(void);
+
+#endif