mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 05:28:20 +00:00
13 lines
181 B
Text
13 lines
181 B
Text
|
|
module Comm;
|
|
|
|
export {
|
|
|
|
const endpoint_name = "" &redef;
|
|
|
|
type SendFlags: record {
|
|
self: bool &default = F;
|
|
peers: bool &default = T;
|
|
unsolicited: bool &default = F;
|
|
};
|
|
}
|