mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 01:28:20 +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
|
@ -5,6 +5,14 @@
|
|||
|
||||
#include "IPAddr.h"
|
||||
|
||||
class Connection;
|
||||
class IP_Hdr;
|
||||
|
||||
namespace analyzer { namespace tcp {
|
||||
|
||||
class TCP_Analyzer;
|
||||
class TCP_Reassembler;
|
||||
|
||||
typedef enum {
|
||||
TCP_ENDPOINT_INACTIVE, // no SYN (or other packets) seen for this side
|
||||
TCP_ENDPOINT_SYN_SENT, // SYN seen, but no ack
|
||||
|
@ -16,11 +24,6 @@ typedef enum {
|
|||
TCP_ENDPOINT_RESET // RST seen
|
||||
} EndpointState;
|
||||
|
||||
class Connection;
|
||||
class TCP_Reassembler;
|
||||
class IP_Hdr;
|
||||
class TCP_Analyzer;
|
||||
|
||||
// One endpoint of a TCP connection.
|
||||
class TCP_Endpoint {
|
||||
public:
|
||||
|
@ -157,4 +160,6 @@ protected:
|
|||
#define ENDIAN_BIG 2
|
||||
#define ENDIAN_CONFUSED 3
|
||||
|
||||
} } // namespace analyzer::*
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue