mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Move Conn and related types to zeek namespace
This commit is contained in:
parent
0355d13099
commit
7fefdd97af
147 changed files with 328 additions and 313 deletions
|
@ -14,7 +14,7 @@ namespace analyzer { namespace tcp {
|
|||
|
||||
class ContentLine_Analyzer : public TCP_SupportAnalyzer {
|
||||
public:
|
||||
ContentLine_Analyzer(Connection* conn, bool orig, int max_line_length=DEFAULT_MAX_LINE_LENGTH);
|
||||
ContentLine_Analyzer(zeek::Connection* conn, bool orig, int max_line_length=DEFAULT_MAX_LINE_LENGTH);
|
||||
~ContentLine_Analyzer() override;
|
||||
|
||||
void SupressWeirds(bool enable)
|
||||
|
@ -62,7 +62,7 @@ public:
|
|||
{ return seq + length <= seq_to_skip; }
|
||||
|
||||
protected:
|
||||
ContentLine_Analyzer(const char* name, Connection* conn, bool orig, int max_line_length=DEFAULT_MAX_LINE_LENGTH);
|
||||
ContentLine_Analyzer(const char* name, zeek::Connection* conn, bool orig, int max_line_length=DEFAULT_MAX_LINE_LENGTH);
|
||||
|
||||
void DeliverStream(int len, const u_char* data, bool is_orig) override;
|
||||
void Undelivered(uint64_t seq, int len, bool orig) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue