Add support for TAP virtual network devices in netdev.
[sliver-openvswitch.git] / include / netdev.h
index f36b920..7c84171 100644 (file)
@@ -66,11 +66,14 @@ enum netdev_pseudo_ethertype {
 };
 
 struct netdev;
+
 int netdev_open(const char *name, int ethertype, struct netdev **);
+int netdev_open_tap(const char *name, struct netdev **);
 void netdev_close(struct netdev *);
+
 int netdev_recv(struct netdev *, struct ofpbuf *);
 void netdev_recv_wait(struct netdev *);
-void netdev_drain(struct netdev *);
+int netdev_drain(struct netdev *);
 int netdev_send(struct netdev *, const struct ofpbuf *);
 const uint8_t *netdev_get_etheraddr(const struct netdev *);
 const char *netdev_get_name(const struct netdev *);