From b26e164e33512ed2356b52e4515f7d87b9cf0e41 Mon Sep 17 00:00:00 2001
From: jl777 <jameslee777@yahoo.com>
Date: Tue, 12 Sep 2017 11:19:20 +0200
Subject: [PATCH] Test

---
 iguana/exchanges/LP_socket.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/iguana/exchanges/LP_socket.c b/iguana/exchanges/LP_socket.c
index bb5409fcf..173ff1ec4 100644
--- a/iguana/exchanges/LP_socket.c
+++ b/iguana/exchanges/LP_socket.c
@@ -126,10 +126,12 @@ int32_t LP_socket(int32_t bindflag,char *hostname,uint16_t port)
 #endif
     if ( bindflag == 0 )
     {
-        timeout.tv_sec = 10;
+        timeout.tv_sec = 2;
         timeout.tv_usec = 0;
         setsockopt(sock,SOL_SOCKET,SO_RCVTIMEO,(void *)&timeout,sizeof(timeout));
+        printf("call connect\n");
         result = connect(sock,(struct sockaddr *)&saddr,addrlen);
+        printf("called connect result.%d\n",result);
         if ( result != 0 )
         {
             if ( errno != ECONNRESET && errno != ENOTCONN && errno != ECONNREFUSED && errno != ETIMEDOUT && errno != EHOSTUNREACH )
@@ -140,7 +142,7 @@ int32_t LP_socket(int32_t bindflag,char *hostname,uint16_t port)
                 closesocket(sock);
             return(-1);
         }
-        timeout.tv_sec = 10000000;
+        timeout.tv_sec = 10;
         timeout.tv_usec = 0;
         setsockopt(sock,SOL_SOCKET,SO_RCVTIMEO,(void *)&timeout,sizeof(timeout));
     }