diff options
Diffstat (limited to 'net/base/net_util.h')
-rw-r--r-- | net/base/net_util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/base/net_util.h b/net/base/net_util.h index 5735111..eb7829b 100644 --- a/net/base/net_util.h +++ b/net/base/net_util.h @@ -515,11 +515,13 @@ NET_EXPORT_PRIVATE bool IsLocalhost(const std::string& host); struct NET_EXPORT NetworkInterface { NetworkInterface(); NetworkInterface(const std::string& name, + uint32 interface_index, const IPAddressNumber& address, size_t network_prefix); ~NetworkInterface(); std::string name; + uint32 interface_index; // Always 0 on Android. IPAddressNumber address; size_t network_prefix; }; |