Ryo Iizuka / libMiMic

Dependents:   MbedFileServer_1768MiniDK2 RedWireBridge IssueDebug_gcc MiMicRemoteMCU-for-Mbed ... more

Revision:
110:257739f9b31e
Parent:
109:18f12ac01097
--- a/mbed/UdpSocket.cpp	Wed Nov 19 14:45:17 2014 +0000
+++ b/mbed/UdpSocket.cpp	Sun Mar 15 09:33:38 2015 +0000
@@ -20,9 +20,9 @@
     UdpSocket::UdpSocket(unsigned short i_port,bool i_nobuffer)
     {
         if(i_nobuffer){
-            this->_inst=NyLPC_cNetIf_createUdpSocketEx(i_port,NyLPC_TSocketType_UDP_NOBUF);
+            this->_inst=NyLPC_cNet_createUdpSocketEx(i_port,NyLPC_TSocketType_UDP_NOBUF);
         }else{
-            this->_inst=NyLPC_cNetIf_createUdpSocketEx(i_port,NyLPC_TSocketType_UDP_NORMAL);
+            this->_inst=NyLPC_cNet_createUdpSocketEx(i_port,NyLPC_TSocketType_UDP_NORMAL);
         }
         if(this->_inst==NULL){
             mbed_die();