Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: DnsQuery
Dependents: WizFi310_TCP_Echo_Server_Example
Fork of NetworkSocketAPI by
Diff: NetworkInterface.h
- Revision:
- 52:52a6c4ea7128
- Parent:
- 46:ac37605ca91d
- Child:
- 53:26b5f1c69822
diff -r f2a088d58051 -r 52a6c4ea7128 NetworkInterface.h --- a/NetworkInterface.h Thu Feb 25 04:11:11 2016 -0600 +++ b/NetworkInterface.h Thu Feb 25 06:42:40 2016 -0600 @@ -48,11 +48,12 @@ class NetworkInterface { public: - /** Enables DHCP and clears any static address - * DHCP resolution does not occur until connect call - * DHCP is enabled by default + /** Enables or disables DHCP + * @note DHCP resolution does not occur until connect + * @note DHCP is enabled by default + * @param enable Enables DHCP if true */ - virtual void useDHCP(); + virtual void setDHCP(bool enable); /** Set the static IP address of the network interface * @param ip Static IP address, copied internally @@ -69,6 +70,11 @@ */ virtual void setGateway(const char *gateway); + /** Checks if DHCP is enabled + * @return True if DHCP is enabled + */ + virtual bool getDHCP(); + /** Get the IP address * @return IP address of the interface */ @@ -119,6 +125,7 @@ virtual void destroySocket(SocketInterface *socket) = 0; private: + bool _dhcp_enabled; char _ip_address[NS_IP_SIZE]; char _network_mask[NS_IP_SIZE]; char _gateway[NS_IP_SIZE];