diff --git a/anubis_dev/vm/src/vmtools.c b/anubis_dev/vm/src/vmtools.c index f142934..49ed168 100644 --- a/anubis_dev/vm/src/vmtools.c +++ b/anubis_dev/vm/src/vmtools.c @@ -1146,7 +1146,7 @@ open_IP_connection(U32 conn_seg, memcpy(&server_name.sin_addr, &ip_addr, sizeof(long)); - printf("Socket %d port %d\n",sock,ip_port); +// printf("Socket %d port %d\n",sock,ip_port); //printf("\ntry open %d.%d.%d.%d|%d socket %d ",server_name.sin_addr.S_un.S_un_b.s_b1,server_name.sin_addr.S_un.S_un_b.s_b2,server_name.sin_addr.S_un.S_un_b.s_b3,server_name.sin_addr.S_un.S_un_b.s_b4,ip_port,sock); /* try to connect */ if (connect(sock,(struct sockaddr *)&server_name,sizeof(struct sockaddr)) == -1) @@ -1261,7 +1261,7 @@ is_IP_connection_ready(U32 conn_seg) { if (FD_ISSET(sock, &the_fd_write_set)) { - printf("Socket write status\n"); +// printf("Socket write status\n"); if(getsockopt(sock, SOL_SOCKET, SO_ERROR, (char*)&optVal, &optLen) != SOCKET_ERROR) { switch(optVal) @@ -1286,7 +1286,7 @@ is_IP_connection_ready(U32 conn_seg) if(FD_ISSET(sock, &the_fd_except_set)) { - printf("Socket exception status\n"); +// printf("Socket exception status\n"); if(getsockopt(sock, SOL_SOCKET, SO_ERROR, (char*)&optVal, &optLen) != SOCKET_ERROR) { switch(optVal) -- libgit2 0.21.4