X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=lib%2Fnetdev.h;h=03d7f95cbca72e4eef1cf35c5344fa827c1d50a1;hb=eb9b830766044475277a590dbf8d213b77b62188;hp=133d8ee65439fa60b6b134722c3ea5d4afe259f3;hpb=2b9d65898426b2e15d05dc6a9ffdbcb92933398f;p=openvswitch diff --git a/lib/netdev.h b/lib/netdev.h index 133d8ee6..03d7f95c 100644 --- a/lib/netdev.h +++ b/lib/netdev.h @@ -125,8 +125,9 @@ int netdev_set_etheraddr(struct netdev *, const uint8_t mac[6]); int netdev_get_etheraddr(const struct netdev *, uint8_t mac[6]); /* PHY interface. */ -int netdev_get_carrier(const struct netdev *, bool *carrier); -int netdev_get_features(struct netdev *, +bool netdev_get_carrier(const 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,6 +142,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 **); +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 *);