mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08:20 +00:00

Changes: * change virtual to override where appropriate * analyzer triggered assert in debug mode because it did not call Done() on manually instantiated analyzers. * added a few length checks to methods * commented unused code and removed a few unused class members
39 lines
895 B
C++
39 lines
895 B
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#ifndef ANALYZER_PROTOCOL_GSSAPI_GSSAPI_H
|
|
#define ANALYZER_PROTOCOL_GSSAPI_GSSAPI_H
|
|
|
|
#include "events.bif.h"
|
|
#include "analyzer/protocol/tcp/TCP.h"
|
|
|
|
#include "gssapi_pac.h"
|
|
|
|
namespace analyzer { namespace gssapi {
|
|
|
|
class GSSAPI_Analyzer
|
|
|
|
: public tcp::TCP_ApplicationAnalyzer {
|
|
|
|
public:
|
|
GSSAPI_Analyzer(Connection* conn);
|
|
virtual ~GSSAPI_Analyzer();
|
|
|
|
// Overriden from Analyzer.
|
|
void Done() override;
|
|
|
|
void DeliverStream(int len, const u_char* data, bool orig) override;
|
|
void Undelivered(uint64 seq, int len, bool orig) override;
|
|
|
|
// Overriden from tcp::TCP_ApplicationAnalyzer.
|
|
void EndpointEOF(bool is_orig) override;
|
|
|
|
static analyzer::Analyzer* Instantiate(Connection* conn)
|
|
{ return new GSSAPI_Analyzer(conn); }
|
|
|
|
protected:
|
|
binpac::GSSAPI::GSSAPI_Conn* interp;
|
|
};
|
|
|
|
} } // namespace analyzer::*
|
|
|
|
#endif
|