Move input code to zeek namespaces

This commit is contained in:
Tim Wojtulewicz 2020-08-01 10:47:51 -07:00
parent 14408235b8
commit 9a800265ff
31 changed files with 227 additions and 162 deletions

View file

@ -6,7 +6,7 @@
#include "../Desc.h"
#include "../util.h"
using namespace input;
namespace zeek::input {
Component::Component(const std::string& name, factory_callback arg_factory)
: zeek::plugin::Component(zeek::plugin::component::READER, name)
@ -29,3 +29,5 @@ void Component::DoDescribe(zeek::ODesc* d) const
d->Add("Input::READER_");
d->Add(CanonicalName());
}
} // namespace zeek::input