From dfa21d54c893939e892812a637a924fa89af8f5f Mon Sep 17 00:00:00 2001 From: Seth Hall Date: Tue, 13 Oct 2020 08:12:20 -0400 Subject: [PATCH] Update scripts/base/init-bare.zeek Co-authored-by: Jon Siwek --- scripts/base/init-bare.zeek | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/base/init-bare.zeek b/scripts/base/init-bare.zeek index e040e7710f..277bab9cc0 100644 --- a/scripts/base/init-bare.zeek +++ b/scripts/base/init-bare.zeek @@ -4979,9 +4979,14 @@ export { ## The definition of a "pcap interface". type Interface: record { + ## The interface/device name. name: string; + ## A human-readable description of the device. description: string &optional; + ## The network addresses associated with the device. addrs: set[addr]; + ## Whether the device is a loopback interface. E.g. addresses + ## of ``127.0.0.1`` or ``[::1]`` are used by loopback interfaces. is_loopback: bool; extended_flags: bool &default=F;