From e7ecf33061f5fe50274b38ba6139a6e029867a8e Mon Sep 17 00:00:00 2001 From: erickson Date: Fri, 18 Feb 2005 16:34:14 +0000 Subject: [PATCH] removed prints git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@88 9efc2488-bf62-4759-914b-345cdb29e865 --- src/libtransport/transport_socket.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libtransport/transport_socket.c b/src/libtransport/transport_socket.c index 012bd96..49864eb 100644 --- a/src/libtransport/transport_socket.c +++ b/src/libtransport/transport_socket.c @@ -116,7 +116,7 @@ int tcp_send( transport_socket* sock_obj, const char* data ){ return 0; } - fprintf( stderr, "TCP Sending: \n%s\n", data ); + //fprintf( stderr, "TCP Sending: \n%s\n", data ); // ------------------------------------------------------------------ // Send the data down the TCP pipe @@ -210,7 +210,7 @@ int tcp_wait( transport_socket* sock_obj, int timeout ){ #else // read everything we can while( (n = recv(sock_fd, buf, BUFSIZE-1, 0) ) > 0 ) { - printf("\nReceived: %s\n", buf); + //printf("\nReceived: %s\n", buf); sock_obj->data_received_callback( sock_obj->user_data, buf ); memset( &buf, 0, BUFSIZE ); } -- 2.43.2