1
0

Unified cPacketizer across all protocols.

This commit is contained in:
Mattes D
2015-03-22 19:46:08 +01:00
parent 8df9f1685a
commit c626848393
14 changed files with 882 additions and 778 deletions

View File

@@ -982,3 +982,15 @@ bool cProtocolRecognizer::TryRecognizeLengthedProtocol(UInt32 a_PacketLengthRema
void cProtocolRecognizer::SendPacket(cPacketizer & a_Pkt)
{
// This function should never be called - it needs to exists so that cProtocolRecognizer can be instantiated,
// but the actual sending is done by the internal m_Protocol itself.
LOGWARNING("%s: This function shouldn't ever be called.", __FUNCTION__);
ASSERT(!"Function not to be called");
}