2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 14:25:26 +00:00

Remove netdev_find_dev_by_in4

netdev_find_dev_by_in4() appears to no longer be used and thus
can be removed. This also allows netdev_enumerate(), the
enumerate member of struct netdev_class and netdev_linux_enumerate()
to be removed.

I noticed this as netdev_linux_enumerate() makes use of if_nameindex()
and if_freenameindex() which are not available when compiling using
the Android NDK r6b (Android API level 13).
This commit is contained in:
Simon Horman
2011-09-22 21:24:14 +09:00
committed by Ben Pfaff
parent 00fa9d37c2
commit ee9bed06cd
6 changed files with 1 additions and 98 deletions

View File

@@ -144,16 +144,6 @@ struct netdev_class {
/* Closes 'netdev'. */
void (*close)(struct netdev *netdev);
/* Enumerates the names of all network devices of this class.
*
* The caller has already initialized 'all_names' and might already have
* added some names to it. This function should not disturb any existing
* names in 'all_names'.
*
* If this netdev class does not support enumeration, this may be a null
* pointer. */
int (*enumerate)(struct sset *all_names);
/* ## ----------------- ## */
/* ## Receiving Packets ## */