jl777
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
24 additions and
20 deletions
-
iguana/exchanges/LP_signatures.c
-
iguana/exchanges/LP_socket.c
|
|
@ -722,7 +722,7 @@ void LP_query(void *ctx,char *myipaddr,int32_t mypubsock,char *method,struct LP_ |
|
|
|
LP_queuecommand(0,msg,IPC_ENDPOINT,-1,0); |
|
|
|
memset(&zero,0,sizeof(zero)); |
|
|
|
LP_reserved_msg(1,qp->srccoin,qp->destcoin,zero,clonestr(msg)); |
|
|
|
//if ( bits256_nonz(qp->srchash) != 0 )
|
|
|
|
if ( bits256_nonz(qp->srchash) != 0 ) |
|
|
|
{ |
|
|
|
sleep(1); |
|
|
|
LP_reserved_msg(1,qp->srccoin,qp->destcoin,qp->srchash,clonestr(msg)); |
|
|
|
|
|
@ -200,6 +200,8 @@ int32_t LP_socket(int32_t bindflag,char *hostname,uint16_t port) |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
if ( bindflag == 0 ) |
|
|
|
{ |
|
|
|
if ( 1 ) // connect using async to allow timeout, then switch to sync
|
|
|
|
{ |
|
|
|
uint32_t starttime = (uint32_t)time(NULL); |
|
|
|
//printf("call connect sock.%d\n",sock);
|
|
|
@ -207,10 +209,14 @@ int32_t LP_socket(int32_t bindflag,char *hostname,uint16_t port) |
|
|
|
//printf("called connect result.%d lag.%d\n",result,(int32_t)(time(NULL) - starttime));
|
|
|
|
if ( result < 0 ) |
|
|
|
return(-1); |
|
|
|
timeout.tv_sec = 2; |
|
|
|
timeout.tv_sec = 10; |
|
|
|
timeout.tv_usec = 0; |
|
|
|
setsockopt(sock,SOL_SOCKET,SO_RCVTIMEO,(void *)&timeout,sizeof(timeout)); |
|
|
|
/*if ( result != 0 )
|
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
result = connect(sock,(struct sockaddr *)&saddr,addrlen); |
|
|
|
if ( result != 0 ) |
|
|
|
{ |
|
|
|
if ( errno != ECONNRESET && errno != ENOTCONN && errno != ECONNREFUSED && errno != ETIMEDOUT && errno != EHOSTUNREACH ) |
|
|
|
{ |
|
|
@ -219,10 +225,8 @@ int32_t LP_socket(int32_t bindflag,char *hostname,uint16_t port) |
|
|
|
if ( sock >= 0 ) |
|
|
|
closesocket(sock); |
|
|
|
return(-1); |
|
|
|
}*/ |
|
|
|
timeout.tv_sec = 10; |
|
|
|
timeout.tv_usec = 0; |
|
|
|
setsockopt(sock,SOL_SOCKET,SO_RCVTIMEO,(void *)&timeout,sizeof(timeout)); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|