mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-18 21:16:54 +02:00
Removed debug line
This commit is contained in:
parent
b7b014298b
commit
398e0b7c63
1 changed files with 1 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue