This is Webservice SDK for mbed. LPCXpresso1769/LPC1768/FRDM-K64F/LPC4088

Fork of libMiMic by Ryo Iizuka

Revision:
64:258e84040262
Parent:
60:803de2088243
Child:
109:18f12ac01097
--- a/mbed/UdpSocket.cpp	Fri Oct 18 12:40:09 2013 +0000
+++ b/mbed/UdpSocket.cpp	Wed Oct 23 04:49:08 2013 +0000
@@ -39,7 +39,7 @@
         return NyLPC_cUdpSocket_precv(&this->_inst,&rx,&info,TIMEOUT_IN_MSEC)>0;
     }
 
-    int UdpSocket::precvfrom(const void* &i_rx,IpAddr* i_peer_host,unsigned short* i_port)
+    int UdpSocket::precvFrom(const void* &i_rx,IpAddr* i_peer_host,unsigned short* i_port)
     {
         const struct NyLPC_TIPv4RxInfo* info;
         int rs=NyLPC_cUdpSocket_precv(&this->_inst,&i_rx,&info,TIMEOUT_IN_MSEC);
@@ -53,7 +53,7 @@
         }
         return rs;
     }
-    int UdpSocket::precvfrom(const char* &i_rx,IpAddr* i_peer_host,unsigned short* i_port)
+    int UdpSocket::precvFrom(const char* &i_rx,IpAddr* i_peer_host,unsigned short* i_port)
     {
         const struct NyLPC_TIPv4RxInfo* info;
         int rs=NyLPC_cUdpSocket_precv(&this->_inst,(const void**)&i_rx,&info,TIMEOUT_IN_MSEC);
@@ -68,7 +68,7 @@
         return rs;
     }
 
-    void UdpSocket::precvnext(void)
+    void UdpSocket::precvNext(void)
     {
         NyLPC_cUdpSocket_pseek(&this->_inst);
     }