mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 03:28:19 +00:00
Move arp, tcp, udp, pia, and stepping stone analyzers
This commit is contained in:
parent
f1cfd5aa2b
commit
914ffcadae
112 changed files with 520 additions and 436 deletions
|
@ -35,7 +35,7 @@ typedef enum {
|
|||
} SMTP_State;
|
||||
|
||||
|
||||
class SMTP_Analyzer final : public tcp::TCP_ApplicationAnalyzer {
|
||||
class SMTP_Analyzer final : public zeek::analyzer::tcp::TCP_ApplicationAnalyzer {
|
||||
public:
|
||||
explicit SMTP_Analyzer(zeek::Connection* conn);
|
||||
~SMTP_Analyzer() override;
|
||||
|
@ -90,8 +90,8 @@ protected:
|
|||
mime::MIME_Mail* mail;
|
||||
|
||||
private:
|
||||
tcp::ContentLine_Analyzer* cl_orig;
|
||||
tcp::ContentLine_Analyzer* cl_resp;
|
||||
zeek::analyzer::tcp::ContentLine_Analyzer* cl_orig;
|
||||
zeek::analyzer::tcp::ContentLine_Analyzer* cl_resp;
|
||||
};
|
||||
|
||||
} } // namespace analyzer::*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue