diff options
author | Joseph Henry <josephjah@gmail.com> | 2016-01-20 15:04:02 -0800 |
---|---|---|
committer | Joseph Henry <josephjah@gmail.com> | 2016-01-20 15:04:02 -0800 |
commit | 398e0b7c63420e80fc44a3061f553815c56b2807 (patch) | |
tree | 3c061ca87de53145938b8509b110b7fa6f43120e | |
parent | b7b014298b88b8ddccf5837871743dc7668e1020 (diff) | |
download | infinitytier-398e0b7c63420e80fc44a3061f553815c56b2807.tar.gz infinitytier-398e0b7c63420e80fc44a3061f553815c56b2807.zip |
Removed debug line
-rw-r--r-- | netcon/NetconEthernetTap.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/netcon/NetconEthernetTap.cpp b/netcon/NetconEthernetTap.cpp index 264b80e8..fda53fc0 100644 --- a/netcon/NetconEthernetTap.cpp +++ b/netcon/NetconEthernetTap.cpp @@ -427,8 +427,6 @@ void NetconEthernetTap::phyOnUnixWritable(PhySocket *sock,void **uptr,bool lwip_ } TcpConnection *conn = getConnection(sock); if(conn && conn->rxsz) { - dwr(MSG_DEBUG,"phyWritable(): conn->sock = %x, conn->rxbuf = %x, conn->rxsz = %d\n", conn->sock, conn->rxbuf, conn->rxsz); - int n = _phy.streamSend(conn->sock, conn->rxbuf, conn->rxsz); if(n > 0) { if(conn->rxsz-n > 0) @@ -436,7 +434,7 @@ void NetconEthernetTap::phyOnUnixWritable(PhySocket *sock,void **uptr,bool lwip_ conn->rxsz -= n; lwipstack->_tcp_recved(conn->pcb, n); } else { - dwr(MSG_ERROR," phyOnUnixWritable(): errno = %d, rxsz = %d\n", errno, conn->rxsz); + dwr(MSG_DEBUG," phyOnUnixWritable(): errno = %d, rxsz = %d\n", errno, conn->rxsz); _phy.setNotifyWritable(conn->sock, false); } } |