Move arp, tcp, udp, pia, and stepping stone analyzers

This commit is contained in:
Tim Wojtulewicz 2020-08-03 12:53:07 -07:00
parent f1cfd5aa2b
commit 914ffcadae
112 changed files with 520 additions and 436 deletions

View file

@ -1,6 +1,6 @@
#pragma once
namespace analyzer { namespace tcp {
namespace zeek::analyzer::tcp {
class TCP_Flags {
public:
@ -48,5 +48,6 @@ inline std::string TCP_Flags::AsString() const
}
}
namespace analyzer::tcp {
using TCP_Flags [[deprecated("Remove in v4.1. Use zeek::analyzer::tcp::TCP_Flags.")]] = zeek::analyzer::tcp::TCP_Flags;
}