From 2afd95128ce7eca659d8f257a6e3e9176f826ff7 Mon Sep 17 00:00:00 2001 From: mlafauci Date: Mon, 6 Jun 2011 01:27:45 +0200 Subject: [PATCH] Changed localIP function name --- WiFi/WiFi.cpp | 2 +- WiFi/WiFi.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/WiFi/WiFi.cpp b/WiFi/WiFi.cpp index 5e766e0f5..a7ccc2047 100755 --- a/WiFi/WiFi.cpp +++ b/WiFi/WiFi.cpp @@ -121,7 +121,7 @@ uint8_t* WiFiClass::macAddress(uint8_t* mac) return mac; } -IPAddress WiFiClass::localIp() +IPAddress WiFiClass::localIP() { IPAddress ret; WiFiDrv::getIpAddress(ret); diff --git a/WiFi/WiFi.h b/WiFi/WiFi.h index 738f6f256..27380b9d2 100755 --- a/WiFi/WiFi.h +++ b/WiFi/WiFi.h @@ -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();