mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Update scripts/base/init-bare.zeek
Co-authored-by: Jon Siwek <jsiwek@corelight.com>
This commit is contained in:
parent
e532991bf2
commit
dfa21d54c8
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue