Fix overrides of TCP_ApplicationAnalyzer::EndpointEOF.

In many cases, classes derived from TCP_ApplicationAnalyzer were
*overloading* instead of overriding EndpointEOF causing the parent
class version to become hidden in the child and also for the child's
version to never to called polymorphically from
TCP_Analyzer::EndpointEOF.  Clang gave a warning in each case.
This commit is contained in:
Jon Siwek 2012-07-13 16:25:58 -05:00
parent 353393f9bd
commit 0ef91538db
12 changed files with 23 additions and 23 deletions

View file

@ -15,7 +15,7 @@ public:
virtual void Undelivered(int seq, int len, bool orig);
// Overriden from TCP_ApplicationAnalyzer.
virtual void EndpointEOF(TCP_Reassembler* endp);
virtual void EndpointEOF(bool is_orig);
static Analyzer* InstantiateAnalyzer(Connection* conn)
{ return new SSL_Analyzer(conn); }