--- libaitrpc/src/cli.c 2013/08/23 13:13:07 1.17.2.1 +++ libaitrpc/src/cli.c 2013/08/23 13:34:52 1.17.2.2 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: cli.c,v 1.17.2.1 2013/08/23 13:13:07 misho Exp $ +* $Id: cli.c,v 1.17.2.2 2013/08/23 13:34:52 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -300,12 +300,10 @@ rpc_pkt_Receive(int sock, int type, sockaddr_t * __res /* reply from RPC server */ do { - printf("START estlen=%d blen=%d\n", estlen, blen); if (type == SOCK_STREAM) ret = rpc_Read(sock, type, !estlen ? MSG_PEEK : 0, NULL, buf, blen); else ret = rpc_Read(sock, type, 0, sa, buf, AIT_LEN(pkt)); - printf("RET=%d\n", ret); if (ret < 1) { LOGERR; return -1; @@ -326,7 +324,6 @@ rpc_pkt_Receive(int sock, int type, sockaddr_t * __res AIT_RE_BUF(pkt, estlen); buf = AIT_GET_BUF(pkt); blen = estlen; - printf("estlen=%d blen=%d\n", estlen, blen); continue; }