Browse Source

test

release/v0.1
jl777 9 years ago
parent
commit
4af1b33aa2
  1. 4
      iguana/iguana_peers.c

4
iguana/iguana_peers.c

@ -311,7 +311,7 @@ int32_t iguana_socket(int32_t bindflag,char *hostname,uint16_t port)
printf("socket() failed: %s errno.%d", strerror(errno),errno); printf("socket() failed: %s errno.%d", strerror(errno),errno);
return(-1); return(-1);
} }
if ( 1 && bindflag != 0 ) if ( 0 && bindflag != 0 )
{ {
timeout.tv_sec = 0; timeout.tv_sec = 0;
timeout.tv_usec = 1000; timeout.tv_usec = 1000;
@ -331,7 +331,7 @@ int32_t iguana_socket(int32_t bindflag,char *hostname,uint16_t port)
close(sock); close(sock);
return(-1); return(-1);
} }
if ( bindflag != 0 && listen(sock,3) != 0 ) if ( bindflag != 0 && listen(sock,128) != 0 )
{ {
printf("listen(%s) port.%d failed: %s sock.%d. errno.%d\n",hostname,port,strerror(errno),sock,errno); printf("listen(%s) port.%d failed: %s sock.%d. errno.%d\n",hostname,port,strerror(errno),sock,errno);
if ( sock >= 0 ) if ( sock >= 0 )

Loading…
Cancel
Save