More bro-to-zeek renaming in scripts and other files

This commit is contained in:
Daniel Thayer 2019-05-16 02:36:41 -05:00
parent 3f9e7138bd
commit be182aac83
81 changed files with 211 additions and 211 deletions

View file

@ -1,7 +1,7 @@
##! Constants used by the OpenFlow framework.
# All types/constants not specific to OpenFlow will be defined here
# until they somehow get into Bro.
# until they somehow get into Zeek.
module OpenFlow;
@ -10,7 +10,7 @@ module OpenFlow;
const COOKIE_BID_SIZE = 16777216;
# start at bit 40 (1 << 40)
const COOKIE_BID_START = 1099511627776;
# bro specific cookie ID shall have the 42 bit set (1 << 42)
# Zeek specific cookie ID shall have the 42 bit set (1 << 42)
const BRO_COOKIE_ID = 4;
# 8 bits group identifier
const COOKIE_GID_SIZE = 256;
@ -122,7 +122,7 @@ export {
## Return value for a cookie from a flow
## which is not added, modified or deleted
## from the bro openflow framework.
## from the Zeek openflow framework.
const INVALID_COOKIE = 0xffffffffffffffff;
# Openflow physical port definitions
## Send the packet out the input port. This

View file

@ -1,4 +1,4 @@
##! Bro's OpenFlow control framework.
##! Zeek's OpenFlow control framework.
##!
##! This plugin-based framework allows to control OpenFlow capable
##! switches by implementing communication to an OpenFlow controller

View file

@ -1,5 +1,5 @@
##! OpenFlow plugin that outputs flow-modification commands
##! to a Bro log file.
##! to a Zeek log file.
@load base/frameworks/openflow
@load base/frameworks/logging