summaryrefslogtreecommitdiff
path: root/src/NodeService.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/NodeService.cpp')
-rw-r--r--src/NodeService.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/NodeService.cpp b/src/NodeService.cpp
index d0b52e5..b25bb80 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) {