Update scripts/base/init-bare.zeek

Co-authored-by: Jon Siwek <jsiwek@corelight.com>
This commit is contained in:
Seth Hall 2020-10-13 08:12:20 -04:00 committed by GitHub
parent e532991bf2
commit dfa21d54c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4979,9 +4979,14 @@ export {
## The definition of a "pcap interface". ## The definition of a "pcap interface".
type Interface: record { type Interface: record {
## The interface/device name.
name: string; name: string;
## A human-readable description of the device.
description: string &optional; description: string &optional;
## The network addresses associated with the device.
addrs: set[addr]; 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; is_loopback: bool;
extended_flags: bool &default=F; extended_flags: bool &default=F;