X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fnetdev.h;h=a7deb24b4a471ce5fe74cc467fc4cbb75b1d1f74;hb=46aef12ee5fcb028d20bac654c8a08cf993cfac8;hp=d7d7097b0eeb4d46841e98d86e213c9b25e89744;hpb=ea83a2fcd0d31246ece7bdea4c54e162f432e81c;p=openvswitch diff --git a/lib/netdev.h b/lib/netdev.h index d7d7097b..a7deb24b 100644 --- a/lib/netdev.h +++ b/lib/netdev.h @@ -98,7 +98,6 @@ void netdev_enumerate_types(struct svec *types); /* Open and close. */ int netdev_open(struct netdev_options *, struct netdev **); int netdev_open_default(const char *name, struct netdev **); -int netdev_reconfigure(struct netdev *, const struct shash *args); void netdev_close(struct netdev *); bool netdev_exists(const char *name); @@ -106,6 +105,10 @@ bool netdev_is_open(const char *name); int netdev_enumerate(struct svec *); +/* Options. */ +int netdev_set_config(struct netdev *, const struct shash *args); +const struct shash *netdev_get_config(const struct netdev *); + /* Basic properties. */ const char *netdev_get_name(const struct netdev *); const char *netdev_get_type(const struct netdev *); @@ -126,7 +129,8 @@ int netdev_get_etheraddr(const struct netdev *, uint8_t mac[6]); /* PHY interface. */ bool netdev_get_carrier(const struct netdev *); -int netdev_get_features(struct netdev *, +bool netdev_get_miimon(const struct netdev *); +int netdev_get_features(const struct netdev *, uint32_t *current, uint32_t *advertised, uint32_t *supported, uint32_t *peer); uint64_t netdev_features_to_bps(uint32_t features); @@ -141,7 +145,7 @@ int netdev_get_in6(const struct netdev *, struct in6_addr *); int netdev_add_router(struct netdev *, struct in_addr router); int netdev_get_next_hop(const struct netdev *, const struct in_addr *host, struct in_addr *next_hop, char **); -const char *netdev_get_tnl_iface(const struct netdev *); +int netdev_get_status(const struct netdev *, struct shash *sh); int netdev_arp_lookup(const struct netdev *, uint32_t ip, uint8_t mac[6]); int netdev_get_flags(const struct netdev *, enum netdev_flags *);