summaryrefslogtreecommitdiff
path: root/lib/rtnetlink.h
diff options
context:
space:
mode:
authorEthan Jackson <ethan@nicira.com>2010-12-21 13:44:37 -0800
committerEthan Jackson <ethan@nicira.com>2011-01-04 10:34:55 -0800
commit21d6e22eeec05a1c382178dc2eb840afe3b9cca6 (patch)
tree096f1c1b9cc6c4ec82d084e9cb436e6b36216119 /lib/rtnetlink.h
parent5601839c4565e31405803416c79aecc0db9a40c0 (diff)
downloadopenvswitch-21d6e22eeec05a1c382178dc2eb840afe3b9cca6.tar.gz
rtnetlink: Remove LINK specific messages from rtnetlink
Abstracted rtnetlink so that it may be used for messages other than RTM LINK messages. Created a new rtnetlink-link module which specifically deals with these kinds of messages and follows the old rtnetlink API.
Diffstat (limited to 'lib/rtnetlink.h')
-rw-r--r--lib/rtnetlink.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/lib/rtnetlink.h b/lib/rtnetlink.h
index 8f1880553..3d4b51e79 100644
--- a/lib/rtnetlink.h
+++ b/lib/rtnetlink.h
@@ -22,26 +22,22 @@
#include "list.h"
-/* A digested version of an rtnetlink message sent down by the kernel to
- * indicate that a network device has been created or destroyed or changed. */
-struct rtnetlink_change {
- /* Copied from struct nlmsghdr. */
- int nlmsg_type; /* e.g. RTM_NEWLINK, RTM_DELLINK. */
-
- /* Copied from struct ifinfomsg. */
- int ifi_index; /* Index of network device. */
-
- /* Extracted from Netlink attributes. */
- const char *ifname; /* Name of network device. */
- int master_ifindex; /* Ifindex of datapath master (0 if none). */
-};
+struct rtnetlink;
+struct nlattr;
+struct ofpbuf;
+
+/* Function called to report rtnetlink notifications. 'change' describes the
+ * specific change filled out by an rtnetlink_parse_func. It may be null if
+ * the buffer of change information overflowed, in which case the function must
+ * assume that everything may have changed. 'aux' is as specified in
+ * rtnetlink_notifier_register().
+ */
+typedef void rtnetlink_notify_func(const void *change, void *aux);
-/* Function called to report that a netdev has changed. 'change' describes the
- * specific change. It may be null if the buffer of change information
- * overflowed, in which case the function must assume that every device may
- * have changed. 'aux' is as specified in the call to
- * rtnetlink_notifier_register(). */
-typedef void rtnetlink_notify_func(const struct rtnetlink_change *, void *aux);
+/* Function called to parse incoming rtnetlink notifications. The 'buf'
+ * message should be parsed into 'change' as specified in rtnetlink_create().
+ */
+typedef bool rtnetlink_parse_func(struct ofpbuf *buf, void *change);
struct rtnetlink_notifier {
struct list node;
@@ -49,10 +45,14 @@ struct rtnetlink_notifier {
void *aux;
};
-int rtnetlink_notifier_register(struct rtnetlink_notifier *,
+struct rtnetlink *rtnetlink_create(int multicast_group,
+ rtnetlink_parse_func *,
+ void *change);
+int rtnetlink_notifier_register(struct rtnetlink *,
+ struct rtnetlink_notifier *,
rtnetlink_notify_func *, void *aux);
-void rtnetlink_notifier_unregister(struct rtnetlink_notifier *);
-void rtnetlink_notifier_run(void);
-void rtnetlink_notifier_wait(void);
-
+void rtnetlink_notifier_unregister(struct rtnetlink *,
+ struct rtnetlink_notifier *);
+void rtnetlink_notifier_run(struct rtnetlink *);
+void rtnetlink_notifier_wait(struct rtnetlink *);
#endif /* rtnetlink.h */