shill: Use integer types from stdint.h
This CL replaces the deprecated int* and uint* types from
'base/basictypes.h' with the int*_t and uint*_t types from 'stdint.h'.
BUG=chromium:401356
TEST=`USE='cellular gdmwimax wimax' FEATURES=test emerge-$BOARD platform2`
Change-Id: I3d4c195881203dd2a47dbb5af150b6c90b9c206e
Reviewed-on: https://chromium-review.googlesource.com/211770
Reviewed-by: Mike Frysinger <vapier@chromium.org>
Commit-Queue: Ben Chan <benchan@chromium.org>
Tested-by: Ben Chan <benchan@chromium.org>
diff --git a/ipconfig.h b/ipconfig.h
index dbcbee6..c32910c 100644
--- a/ipconfig.h
+++ b/ipconfig.h
@@ -43,7 +43,7 @@
IPAddress::Family address_family;
std::string address;
- int32 subnet_prefix;
+ int32_t subnet_prefix;
std::string broadcast_address;
std::vector<std::string> dns_servers;
std::string domain_name;
@@ -56,14 +56,14 @@
// server.
std::string trusted_ip;
bool blackhole_ipv6;
- int32 mtu;
+ int32_t mtu;
std::vector<Route> routes;
// Vendor encapsulated option string gained from DHCP.
std::string vendor_encapsulated_options;
// Web Proxy Auto Discovery (WPAD) URL gained from DHCP.
std::string web_proxy_auto_discovery;
// Length of time the lease was granted.
- uint32 lease_duration_seconds;
+ uint32_t lease_duration_seconds;
};
enum Method {