File diff r25654:e264fd698eb2 → r25655:1030dcb7eb52
src/network/core/tcp_content.cpp
Show inline comments
 
@@ -114,9 +114,9 @@ bool NetworkContentSocketHandler::Handle
 

	
 
		default:
 
			if (this->HasClientQuit()) {
 
				DEBUG(net, 0, "[tcp/content] Received invalid packet type %d", type);
 
				Debug(net, 0, "[tcp/content] Received invalid packet type {}", type);
 
			} else {
 
				DEBUG(net, 0, "[tcp/content] Received illegal packet");
 
				Debug(net, 0, "[tcp/content] Received illegal packet");
 
			}
 
			return false;
 
	}
 
@@ -167,7 +167,7 @@ bool NetworkContentSocketHandler::Receiv
 
 */
 
bool NetworkContentSocketHandler::ReceiveInvalidPacket(PacketContentType type)
 
{
 
	DEBUG(net, 0, "[tcp/content] Received illegal packet type %d", type);
 
	Debug(net, 0, "[tcp/content] Received illegal packet type {}", type);
 
	return false;
 
}