SNICInterface for ThingPlug Example

Dependents:   ThingPlug_WiFi_Example ThingPlug_WiFi_Example_2

Fork of SNICInterface by muRata

Files at this revision

API Documentation at this revision

Comitter:
lesmin
Date:
Thu Aug 13 06:44:01 2015 +0000
Parent:
53:b53ccb9989c4
Commit message:
retry codes are added by STKorea

Changed in this revision

Socket/TCPSocketConnection.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r b53ccb9989c4 -r cb4c105a2ad2 Socket/TCPSocketConnection.cpp
--- a/Socket/TCPSocketConnection.cpp	Tue Mar 31 03:16:46 2015 +0000
+++ b/Socket/TCPSocketConnection.cpp	Thu Aug 13 06:44:01 2015 +0000
@@ -35,7 +35,10 @@
     C_SNIC_Core               *snic_core_p  = C_SNIC_Core::getInstance();
     C_SNIC_UartCommandManager *uartCmdMgr_p = snic_core_p->getUartCommand();
 
+    int retry_cnt=5;
+
     FUNC_IN();
+conn_again:
     // Socket create
     ret = createSocket();
     if( ret != 0 )
@@ -98,6 +101,14 @@
     {
         DEBUG_PRINT( "connect failed\r\n" );
         snic_core_p->freeCmdBuf( payload_buf_p );
+
+        retry_cnt--;
+        printf("retry_wait(%d)\r\n", retry_cnt);
+        if(retry_cnt>0){
+            close();
+            goto conn_again;
+        }
+
         FUNC_OUT();
         return -1;
     }
@@ -106,6 +117,14 @@
     {
         DEBUG_PRINT("connect status:%02x\r\n", uartCmdMgr_p->getCommandStatus());
         snic_core_p->freeCmdBuf( payload_buf_p );
+
+        retry_cnt--;
+        printf("retry_status(%d)\r\n", retry_cnt);
+        if(retry_cnt>0){
+            close();
+            goto conn_again;
+        }
+
         FUNC_OUT();
         return -1;
     }