mirror of https://github.com/ARMmbed/mbed-os.git
NetworkInterface- fix comments for dhcp and ip methods
parent
e31f198810
commit
ebe02274ff
|
@ -95,16 +95,14 @@ public:
|
||||||
*/
|
*/
|
||||||
virtual int connect() = 0;
|
virtual int connect() = 0;
|
||||||
|
|
||||||
/**
|
/** Sends DHCP request
|
||||||
* Sends the dhcp request
|
|
||||||
*
|
*
|
||||||
* @param timeout Request timeout in ms
|
* @param timeout Request timeout in ms
|
||||||
* @return NSAPI_ERROR_OK in case of success, error code otherwise
|
* @return NSAPI_ERROR_OK in case of success, error code otherwise
|
||||||
*/
|
*/
|
||||||
virtual int start_dhcp(uint timeout = 15000) = 0;
|
virtual int start_dhcp(uint timeout = 15000) = 0;
|
||||||
|
|
||||||
/**
|
/** Starts the interface with static IP
|
||||||
* Starts the interface with static IP
|
|
||||||
*
|
*
|
||||||
* @param ip Static IP to use (in XYZ.XYZ.XYZ.XYZ format)
|
* @param ip Static IP to use (in XYZ.XYZ.XYZ.XYZ format)
|
||||||
* @param netmask Network mask to use (in XYZ.XYZ.XYZ.XYZ format)
|
* @param netmask Network mask to use (in XYZ.XYZ.XYZ.XYZ format)
|
||||||
|
|
Loading…
Reference in New Issue