Revised to prevent DHCPClient::discover from hanging.
Fork of WIZ820ioInterface by
Diff: WIZ820ioInterface.h
- Revision:
- 6:c466db1cd20b
- Parent:
- 5:fb15c35d1e28
--- a/WIZ820ioInterface.h Tue Aug 27 12:50:11 2013 +0000 +++ b/WIZ820ioInterface.h Sun Dec 01 18:40:14 2013 +0000 @@ -71,11 +71,17 @@ * @ returns ip address */ char* getIPAddress(); + char* getNetworkMask(); + char* getGateway(); + char* getMACAddress(); int IPrenew(int timeout_ms = 15*1000); private: char ip_string[20]; + char mask_string[20]; + char gw_string[20]; + char mac_string[20]; bool ip_set; };