From c08fe7c237ef5eed5c3f45de56c59667fb559e4c Mon Sep 17 00:00:00 2001 From: Phil Rzewski Date: Wed, 1 Jun 2022 18:39:07 -0700 Subject: [PATCH] Define geo_autonomous_system record type --- scripts/base/init-bare.zeek | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/base/init-bare.zeek b/scripts/base/init-bare.zeek index d8c3ec2114..ba6a91a644 100644 --- a/scripts/base/init-bare.zeek +++ b/scripts/base/init-bare.zeek @@ -984,6 +984,14 @@ type geo_location: record { longitude: double &optional; ##< Longitude. } &log; +## GeoIP autonomous system information. +## +## .. zeek:see:: lookup_autonomous_system +type geo_autonomous_system: record { + number: count &optional; ##< The autonomous system number. + organization: string &optional; ##< Associated organization. +} &log; + ## The directory containing MaxMind DB (.mmdb) files to use for GeoIP support. const mmdb_dir: string = "" &redef;