Move regex matching code to zeek namespaces

This commit is contained in:
Tim Wojtulewicz 2020-07-17 15:21:00 -07:00
parent 382812298d
commit c7dc7fc955
26 changed files with 266 additions and 172 deletions

View file

@ -8,6 +8,8 @@
#include "RE.h"
#include "DFA.h"
namespace zeek::detail {
CCL::CCL()
{
syms = new int_list;
@ -48,3 +50,5 @@ unsigned int CCL::MemoryAllocation() const
{
return padded_sizeof(*this) + padded_sizeof(*syms) + pad_size(syms->size() * sizeof(int_list::value_type));
}
} // namespace zeek::detail