mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

before anything else. Internally, this function compiles all regular expressions, avoiding to that inside the regexp constructore. The code is a bit hackish due to the way the regexp code depends on the Bro header.
10 lines
116 B
C++
10 lines
116 B
C++
|
|
#include <vector>
|
|
|
|
class RE_Matcher;
|
|
|
|
namespace binpac {
|
|
|
|
std::vector<RE_Matcher*>* uncompiled_re_matchers = 0;
|
|
|
|
}
|