summaryrefslogtreecommitdiffstats
path: root/sysdep/linux/netlink/krt-scan.h
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-05-08 14:05:55 +0200
committerMartin Mares <mj@ucw.cz>2000-05-08 14:05:55 +0200
commitb6c9d8eb2e255b65f29efd1acfd35a4277b3bf14 (patch)
tree7cfde3426fed8b5a6caeb081b458f3cfd69bf644 /sysdep/linux/netlink/krt-scan.h
parentd0126f0bf0098104cd99fedd61a4bdbe7f7b3f1f (diff)
downloadbird-b6c9d8eb2e255b65f29efd1acfd35a4277b3bf14.tar
bird-b6c9d8eb2e255b65f29efd1acfd35a4277b3bf14.zip
Removed the `async' switch which was used for debugging only anyway.
Don't moan when netlink reports lost packets.
Diffstat (limited to 'sysdep/linux/netlink/krt-scan.h')
-rw-r--r--sysdep/linux/netlink/krt-scan.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdep/linux/netlink/krt-scan.h b/sysdep/linux/netlink/krt-scan.h
index ec10a7f..2f8fe76 100644
--- a/sysdep/linux/netlink/krt-scan.h
+++ b/sysdep/linux/netlink/krt-scan.h
@@ -22,7 +22,6 @@
#endif
struct krt_scan_params {
- int async; /* Allow asynchronous events */
int table_id; /* Kernel table ID we sync with */
};
@@ -32,7 +31,7 @@ struct krt_scan_status {
static inline int krt_scan_params_same(struct krt_scan_params *o, struct krt_scan_params *n)
{
- return o->async == n->async && o->table_id == n->table_id;
+ return o->table_id == n->table_id;
}
#endif