mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
Working on TODOs.
- Introducing analyzer::<protocol> namespaces. - Moving protocol-specific events out of events.bif into analyzer/protocol/<protocol>/events.bif - Moving ARP over (even though it's not an actual analyzer). - Moving NetFlow over (even though it's not an actual analyzer). - Moving MIME over (even though it's not an actual analyzer).
This commit is contained in:
parent
dfc4cb0881
commit
5dc630f722
210 changed files with 7080 additions and 6608 deletions
|
@ -6,7 +6,9 @@
|
|||
#include "analyzer/protocols/tcp/TCP.h"
|
||||
#include "ssl_pac.h"
|
||||
|
||||
class SSL_Analyzer : public TCP_ApplicationAnalyzer {
|
||||
namespace analyzer { namespace ssl {
|
||||
|
||||
class SSL_Analyzer : public tcp::TCP_ApplicationAnalyzer {
|
||||
public:
|
||||
SSL_Analyzer(Connection* conn);
|
||||
virtual ~SSL_Analyzer();
|
||||
|
@ -16,7 +18,7 @@ public:
|
|||
virtual void DeliverStream(int len, const u_char* data, bool orig);
|
||||
virtual void Undelivered(int seq, int len, bool orig);
|
||||
|
||||
// Overriden from TCP_ApplicationAnalyzer.
|
||||
// Overriden from tcp::TCP_ApplicationAnalyzer.
|
||||
virtual void EndpointEOF(bool is_orig);
|
||||
|
||||
static analyzer::Analyzer* InstantiateAnalyzer(Connection* conn)
|
||||
|
@ -35,4 +37,6 @@ protected:
|
|||
|
||||
};
|
||||
|
||||
} } // namespace analyzer::*
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue