1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-15 12:29:26 +01:00

Changed localIP function name

This commit is contained in:
mlafauci 2011-06-06 01:27:45 +02:00
parent 5082b35a17
commit 2afd95128c
2 changed files with 2 additions and 2 deletions

View File

@ -121,7 +121,7 @@ uint8_t* WiFiClass::macAddress(uint8_t* mac)
return mac; return mac;
} }
IPAddress WiFiClass::localIp() IPAddress WiFiClass::localIP()
{ {
IPAddress ret; IPAddress ret;
WiFiDrv::getIpAddress(ret); WiFiDrv::getIpAddress(ret);

View File

@ -51,7 +51,7 @@ public:
uint8_t* macAddress(uint8_t* mac); uint8_t* macAddress(uint8_t* mac);
//Get the DHCP information related to IP //Get the DHCP information related to IP
IPAddress localIp(); IPAddress localIP();
//Get the DHCP information related to subnetMask //Get the DHCP information related to subnetMask
IPAddress subnetMask(); IPAddress subnetMask();