mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
//
|
|
// TODO: This is preliminary code that's not yet functional and not
|
|
// activated. We don't yet support SIP-over-TCP.
|
|
|
|
#pragma once
|
|
|
|
#include "zeek/analyzer/protocol/tcp/TCP.h"
|
|
|
|
#include "analyzer/protocol/sip/sip_TCP_pac.h"
|
|
|
|
namespace zeek::analyzer::sip_tcp {
|
|
|
|
class SIP_Analyzer final : public analyzer::tcp::TCP_ApplicationAnalyzer {
|
|
public:
|
|
explicit SIP_Analyzer(Connection* conn);
|
|
~SIP_Analyzer() override;
|
|
|
|
void Done() override;
|
|
void DeliverStream(int len, const u_char* data, bool orig) override;
|
|
void Undelivered(uint64_t seq, int len, bool orig) override;
|
|
|
|
// Overriden from analyzer::tcp::TCP_ApplicationAnalyzer.
|
|
void EndpointEOF(bool is_orig) override;
|
|
|
|
static analyzer::Analyzer* Instantiate(Connection* conn)
|
|
{ return new SIP_Analyzer(conn); }
|
|
|
|
protected:
|
|
binpac::SIP_TCP::SIP_Conn* interp;
|
|
bool had_gap;
|
|
};
|
|
|
|
} // namespace zeek::analyzer::sip_tcp
|
|
|
|
namespace analyzer::sip_tcp {
|
|
|
|
using SIP_Analyzer [[deprecated("Remove in v4.1. Use zeek::analyzer::sip_tcp::SIP_Analyzer.")]] = zeek::analyzer::sip_tcp::SIP_Analyzer;
|
|
|
|
} // namespace analyzer::sip_tcp
|