diff options
Diffstat (limited to 'netcon/NetconEthernetTap.cpp')
-rw-r--r-- | netcon/NetconEthernetTap.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/netcon/NetconEthernetTap.cpp b/netcon/NetconEthernetTap.cpp index e17acbbf..b4e4eaaf 100644 --- a/netcon/NetconEthernetTap.cpp +++ b/netcon/NetconEthernetTap.cpp @@ -928,12 +928,12 @@ err_t NetconEthernetTap::nc_poll(void* arg, struct tcp_pcb *tpcb) */ err_t NetconEthernetTap::nc_sent(void* arg, struct tcp_pcb *tpcb, u16_t len) { - dwr(5, " nc_sent()\n"); + //dwr(5, " nc_sent()\n"); Larg *l = (Larg*)arg; if(len) { l->conn->acked+=len; //dwr("W = %d, A = %d\n", l->conn->written, l->conn->acked); - dwr("ACK = %d\n", len); + //dwr("ACK = %d\n", len); l->tap->_phy.setNotifyReadable(l->conn->dataSock, true); l->tap->_phy.whack(); } @@ -1356,7 +1356,7 @@ void NetconEthernetTap::handle_connect(PhySocket *sock, void **uptr, struct conn void NetconEthernetTap::handle_write(TcpConnection *conn) { - dwr(5, " handle_write()\n"); + //dwr(5, " handle_write()\n"); float max = (float)TCP_SND_BUF; int r; |