mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Reformat the world
This commit is contained in:
parent
194cb24547
commit
b2f171ec69
714 changed files with 35149 additions and 35203 deletions
|
@ -2,14 +2,15 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "zeek/analyzer/protocol/tcp/TCP.h"
|
||||
|
||||
#include "zeek/analyzer/protocol/mysql/events.bif.h"
|
||||
#include "zeek/analyzer/protocol/mysql/mysql_pac.h"
|
||||
#include "zeek/analyzer/protocol/tcp/TCP.h"
|
||||
|
||||
namespace zeek::analyzer::mysql {
|
||||
namespace zeek::analyzer::mysql
|
||||
{
|
||||
|
||||
class MySQL_Analyzer final : public analyzer::tcp::TCP_ApplicationAnalyzer {
|
||||
class MySQL_Analyzer final : public analyzer::tcp::TCP_ApplicationAnalyzer
|
||||
{
|
||||
|
||||
public:
|
||||
explicit MySQL_Analyzer(Connection* conn);
|
||||
|
@ -24,12 +25,11 @@ public:
|
|||
// Overriden from analyzer::tcp::TCP_ApplicationAnalyzer.
|
||||
void EndpointEOF(bool is_orig) override;
|
||||
|
||||
static analyzer::Analyzer* Instantiate(Connection* conn)
|
||||
{ return new MySQL_Analyzer(conn); }
|
||||
static analyzer::Analyzer* Instantiate(Connection* conn) { return new MySQL_Analyzer(conn); }
|
||||
|
||||
protected:
|
||||
binpac::MySQL::MySQL_Conn* interp;
|
||||
bool had_gap;
|
||||
};
|
||||
};
|
||||
|
||||
} // namespace zeek::analyzer::mysql
|
||||
} // namespace zeek::analyzer::mysql
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue