Remove Netif name and rely on enumerated Interface Id's for netif. (#833)

* Remove Netif name and rely on enumerated Interface Id's for netif.
This commit is contained in:
pvanhorn
2016-10-18 13:56:50 -07:00
committed by Jonathan Hui
parent a5c85169da
commit 81738bd8af
9 changed files with 18 additions and 65 deletions
+8
View File
@@ -843,6 +843,14 @@ typedef struct otNetifAddress
struct otNetifAddress *mNext; ///< A pointer to the next network interface address.
} otNetifAddress;
/**
* This enumeration represents the list of allowable values for an InterfaceId.
*/
typedef enum otNetifInterfaceId
{
OT_NETIF_INTERFACE_ID_THREAD = 1, ///< The Thread Network interface ID.
} otNetifInterfaceId;
/**
* This structure represents data used by Semantically Opaque IID Generator.
*