mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 03:58:20 +00:00
Merge branch 'master' into topic/tunnels
Conflicts: scripts/base/init-bare.bro src/Conn.cc src/Conn.h src/Sessions.cc src/Sessions.h src/const.bif src/types.bif
This commit is contained in:
commit
9fb0065696
147 changed files with 10008 additions and 405 deletions
|
@ -169,7 +169,6 @@ enum ID %{
|
|||
Unknown,
|
||||
%}
|
||||
|
||||
|
||||
module Tunnel;
|
||||
enum Type %{
|
||||
NONE,
|
||||
|
@ -181,4 +180,25 @@ enum Type %{
|
|||
|
||||
type EncapsulatingConn: record;
|
||||
|
||||
module Input;
|
||||
|
||||
enum Reader %{
|
||||
READER_DEFAULT,
|
||||
READER_ASCII,
|
||||
READER_RAW,
|
||||
READER_BENCHMARK,
|
||||
%}
|
||||
|
||||
enum Event %{
|
||||
EVENT_NEW,
|
||||
EVENT_CHANGED,
|
||||
EVENT_REMOVED,
|
||||
%}
|
||||
|
||||
enum Mode %{
|
||||
MANUAL = 0,
|
||||
REREAD = 1,
|
||||
STREAM = 2,
|
||||
%}
|
||||
|
||||
module GLOBAL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue