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;
}
IPAddress WiFiClass::localIp()
IPAddress WiFiClass::localIP()
{
IPAddress ret;
WiFiDrv::getIpAddress(ret);

View File

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