From: Adrian Bondrescu Date: Fri, 1 Jun 2012 02:32:37 +0000 (+0300) Subject: Remove debug prints from the RecvFrom function. X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=commitdiff_plain;h=45ee60cc6bc8ba52c1dbc4784cf61291a90c97f9;p=swifty.git Remove debug prints from the RecvFrom function. --- diff --git a/src/libswift/channel.cpp b/src/libswift/channel.cpp index 5313095..ef30add 100644 --- a/src/libswift/channel.cpp +++ b/src/libswift/channel.cpp @@ -322,11 +322,7 @@ int Channel::RecvFrom (evutil_socket_t sock, Address& addr, struct evbuffer **ev print_error("error on recv"); } length = 0; - printf("Received from %d addresses in one system call.\n", addr.addr->count); for (int i=0; icount; ++i) { - struct in_addr aux; - aux.s_addr = addr.addr->dests[i].addr; - printf("Received from %s, %d bytes\n", inet_ntoa(aux), addr.addr->dests[i].bytes); length += addr.addr->dests[i].bytes; vec[i].iov_len = addr.addr->dests[i].bytes; if (evbuffer_commit_space(evb[i], &vec[i], 1) < 0) {