2
0
mirror of https://github.com/openvswitch/ovs synced 2025-09-05 08:45:23 +00:00

netdev: Get rid of netdev_open_tap().

netdev_open() can always be used in place of netdev_open_tap().  The
former is going to be generalized to support pluggable network device
types, so it makes sense to use it everywhere.
This commit is contained in:
Ben Pfaff
2009-07-23 12:21:11 -07:00
parent 6b9bd97900
commit e33e4d356d
3 changed files with 41 additions and 50 deletions

View File

@@ -75,7 +75,6 @@ struct netdev_stats {
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 *);