mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 01:58:20 +00:00
Remove deprecated UDP, ICMP, and TCP analyzers
This commit is contained in:
parent
644ed5d314
commit
77aa80033b
5 changed files with 0 additions and 45 deletions
|
@ -1,20 +0,0 @@
|
|||
#warning \
|
||||
"Remove in v5.1. This analyzer has been moved to packet analysis, use 'zeek/packet_analysis/protocol/icmp/ICMPSessionAdapter.h' and/or 'zeek/packet_analysis/protocol/icmp/ICMP.h'."
|
||||
|
||||
#include "zeek/packet_analysis/protocol/icmp/ICMP.h"
|
||||
#include "zeek/packet_analysis/protocol/icmp/ICMPSessionAdapter.h"
|
||||
|
||||
namespace zeek::analyzer::icmp
|
||||
{
|
||||
|
||||
using ICMP_Analyzer
|
||||
[[deprecated("Remove in v5.1. Use zeek::packet_analysis::ICMP::ICMPSessionAdapter.")]] =
|
||||
zeek::packet_analysis::ICMP::ICMPSessionAdapter;
|
||||
constexpr auto ICMP4_counterpart
|
||||
[[deprecated("Remove in v5.1. Use zeek::packet_analysis::ICMP::ICMP4_counterpart.")]] =
|
||||
zeek::packet_analysis::ICMP::ICMP4_counterpart;
|
||||
constexpr auto ICMP6_counterpart
|
||||
[[deprecated("Remove in v5.1. Use zeek::packet_analysis::ICMP::ICMP6_counterpart.")]] =
|
||||
zeek::packet_analysis::ICMP::ICMP6_counterpart;
|
||||
|
||||
} // namespace zeek::analyzer::icmp
|
|
@ -21,10 +21,6 @@ class TCP_Endpoint;
|
|||
class TCP_Reassembler;
|
||||
class TCP_ApplicationAnalyzer;
|
||||
|
||||
using TCP_Analyzer
|
||||
[[deprecated("Remove in v5.1. Use zeek::packet_analysis::TCP::TCPSessionAdapter.")]] =
|
||||
packet_analysis::TCP::TCPSessionAdapter;
|
||||
|
||||
/**
|
||||
* An abstract base class for analyzers for a protocol running on top
|
||||
* of TCP.
|
||||
|
|
|
@ -19,10 +19,6 @@ class TCPSessionAdapter;
|
|||
namespace analyzer::tcp
|
||||
{
|
||||
|
||||
using TCP_Analyzer
|
||||
[[deprecated("Remove in v5.1. Use zeek::packet_analysis::TCP::TCPSessionAdapter.")]] =
|
||||
zeek::packet_analysis::TCP::TCPSessionAdapter;
|
||||
|
||||
class TCP_Reassembler;
|
||||
|
||||
enum EndpointState
|
||||
|
|
|
@ -22,10 +22,6 @@ class Analyzer;
|
|||
namespace tcp
|
||||
{
|
||||
|
||||
using TCP_Analyzer
|
||||
[[deprecated("Remove in v5.1. Use zeek::packet_analysis::TCP::TCPSessionAdapter.")]] =
|
||||
zeek::packet_analysis::TCP::TCPSessionAdapter;
|
||||
|
||||
class TCP_Reassembler final : public Reassembler
|
||||
{
|
||||
public:
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
#warning \
|
||||
"Remove in v5.1. This analyzer has been moved to packet analysis, use 'zeek/packet_analysis/protocol/udp/UDPSessionAdapter.h'."
|
||||
|
||||
#include "zeek/packet_analysis/protocol/udp/UDPSessionAdapter.h"
|
||||
|
||||
namespace zeek::analyzer::udp
|
||||
{
|
||||
|
||||
using UDP_Analyzer
|
||||
[[deprecated("Remove in v5.1. Use zeek::packet_analysis::UDP::UDPSessionAdapter.")]] =
|
||||
zeek::packet_analysis::UDP::UDPSessionAdapter;
|
||||
|
||||
} // namespace zeek::analyzer::udp
|
Loading…
Add table
Add a link
Reference in a new issue