diff options
Diffstat (limited to 'src/NodeService.cpp')
| -rw-r--r-- | src/NodeService.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/NodeService.cpp b/src/NodeService.cpp index 5f1c31d..501b5b8 100644 --- a/src/NodeService.cpp +++ b/src/NodeService.cpp @@ -713,6 +713,10 @@ void NodeService::phyOnTcpData(PhySocket* sock, void** uptr, void* data, unsigne TcpConnection* tc = reinterpret_cast<TcpConnection*>(*uptr); tc->lastReceive = OSUtils::now(); switch (tc->type) { + case TcpConnection::TCP_UNCATEGORIZED_INCOMING: + case TcpConnection::TCP_HTTP_INCOMING: + case TcpConnection::TCP_HTTP_OUTGOING: + break; case TcpConnection::TCP_TUNNEL_OUTGOING: tc->readq.append((const char*)data, len); while (tc->readq.length() >= 5) { |
