From 45ee60cc6bc8ba52c1dbc4784cf61291a90c97f9 Mon Sep 17 00:00:00 2001 From: Adrian Bondrescu Date: Fri, 1 Jun 2012 05:32:37 +0300 Subject: [PATCH] Remove debug prints from the RecvFrom function. --- src/libswift/channel.cpp | 4 ---- 1 file changed, 4 deletions(-) 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) { -- 2.20.1