Skip to content

Commit

Permalink
Update license headers.
Browse files Browse the repository at this point in the history
  • Loading branch information
rsmmr committed Jan 15, 2024
1 parent d273b26 commit 704fc7a
Show file tree
Hide file tree
Showing 102 changed files with 111 additions and 101 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2022 by the Zeek Project through the International
Copyright (c) 2021-2024 by the Zeek Project through the International
Computer Science Institute. All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
10 changes: 10 additions & 0 deletions auxil/update-license-headers
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#! /bin/sh

find . -type d -mindepth 1 -maxdepth 1 | grep -E -v '^\.(/build.*|/\.git|/3rdparty|/\.cache|/\.build)(/|$)' | while read dir; do
echo ${dir} >/dev/tty
find "${dir}" -type f | while read file; do
echo ${file} | grep -E -q '/3rdparty/|/\..*/|update-license-headers' && continue
cat ${file} | grep -q Copyright || continue
gsed -i'' 's/Copyright .* by the Zeek Project\..* details\./Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details./' "${file}"
done
done
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
# Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

### Setup compiler

Expand Down
2 changes: 1 addition & 1 deletion src/config.h.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/core/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
# Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

target_sources(zeek-agent
PRIVATE
Expand Down
2 changes: 1 addition & 1 deletion src/core/configuration.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "configuration.h"

Expand Down
2 changes: 1 addition & 1 deletion src/core/configuration.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/core/database.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "database.h"

Expand Down
2 changes: 1 addition & 1 deletion src/core/database.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/core/logger.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "logger.h"

Expand Down
2 changes: 1 addition & 1 deletion src/core/logger.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/core/scheduler.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "scheduler.h"

Expand Down
2 changes: 1 addition & 1 deletion src/core/scheduler.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/core/signal.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/core/signal.posix.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "./signal.h"

Expand Down
2 changes: 1 addition & 1 deletion src/core/signal.windows.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "./signal.h"

Expand Down
2 changes: 1 addition & 1 deletion src/core/sqlite.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "core/sqlite.h"

Expand Down
2 changes: 1 addition & 1 deletion src/core/sqlite.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/io/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
# Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

target_sources(zeek-agent
PRIVATE
Expand Down
2 changes: 1 addition & 1 deletion src/io/console.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "console.h"

Expand Down
2 changes: 1 addition & 1 deletion src/io/console.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/io/zeek.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "zeek.h"

Expand Down
2 changes: 1 addition & 1 deletion src/io/zeek.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/main.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "autogen/config.h"
#include "core/configuration.h"
Expand Down
2 changes: 1 addition & 1 deletion src/platform/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
# Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

target_sources(zeek-agent
PRIVATE
Expand Down
2 changes: 1 addition & 1 deletion src/platform/darwin/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
# Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

target_sources(zeek-agent PRIVATE platform.mm endpoint-security.mm network-extension.mm xpc.mm os-log-sink.mm)
target_link_libraries(zeek-agent PRIVATE "EndpointSecurity")
Expand Down
2 changes: 1 addition & 1 deletion src/platform/darwin/ZeekAgent.app/ExtensionManager.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

import NetworkExtension
import SystemExtensions
Expand Down
2 changes: 1 addition & 1 deletion src/platform/darwin/ZeekAgent.app/XPC.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

import Foundation
import os.log
Expand Down
2 changes: 1 addition & 1 deletion src/platform/darwin/ZeekAgent.app/main.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.
//
// This is the container app installing Zeek Agent as a system extension.

Expand Down
2 changes: 1 addition & 1 deletion src/platform/darwin/endpoint-security.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/platform/darwin/endpoint-security.mm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.
//
// The EndpointSecurity code borrows from
// https://gist.github.com/Omar-Ikram/8e6721d8e83a3da69b31d4c2612a68ba.
Expand Down
2 changes: 1 addition & 1 deletion src/platform/darwin/network-extension.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/platform/darwin/network-extension.mm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.
//
// Note that contrary to what Apple's documentation says, FilterDataProvider is
// *not* sandboxed on macOS. See // https://developer.apple.com/forums/thread/133761.
Expand Down
2 changes: 1 addition & 1 deletion src/platform/darwin/os-log-sink.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/platform/darwin/os-log-sink.mm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "os-log-sink.h"

Expand Down
2 changes: 1 addition & 1 deletion src/platform/darwin/platform.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/platform/darwin/platform.mm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "platform/platform.h"

Expand Down
2 changes: 1 addition & 1 deletion src/platform/darwin/xpc.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.
//
// Defines the XPC protocol and API for communication between the installer app
// and the system extension.
Expand Down
2 changes: 1 addition & 1 deletion src/platform/darwin/xpc.mm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "xpc.h"

Expand Down
2 changes: 1 addition & 1 deletion src/platform/linux/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
# Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

target_sources(zeek-agent PRIVATE platform.cc bpf.cc)
set_property(SOURCE bpf.cc APPEND PROPERTY OBJECT_DEPENDS bpftool)
Expand Down
2 changes: 1 addition & 1 deletion src/platform/linux/bpf.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "bpf.h"

Expand Down
2 changes: 1 addition & 1 deletion src/platform/linux/bpf.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "util/pimpl.h"
#include "util/result.h"
Expand Down
2 changes: 1 addition & 1 deletion src/platform/linux/platform.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "platform/platform.h"

Expand Down
2 changes: 1 addition & 1 deletion src/platform/linux/platform.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/platform/platform.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/platform/testing.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "util/testing.h"

Expand Down
2 changes: 1 addition & 1 deletion src/platform/windows/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
# Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

target_sources(zeek-agent PRIVATE platform.cc)
2 changes: 1 addition & 1 deletion src/platform/windows/platform.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "platform.h"

Expand Down
2 changes: 1 addition & 1 deletion src/tables/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
# Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

if ( HAVE_LINUX )
include(BPF)
Expand Down
2 changes: 1 addition & 1 deletion src/tables/files/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
# Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

target_sources(zeek-agent PRIVATE files.cc)

Expand Down
2 changes: 1 addition & 1 deletion src/tables/files/files.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "files.h"

Expand Down
2 changes: 1 addition & 1 deletion src/tables/files/files.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "core/table.h"

Expand Down
2 changes: 1 addition & 1 deletion src/tables/processes/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
# Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

target_sources(zeek-agent PRIVATE processes.test.cc)

Expand Down
2 changes: 1 addition & 1 deletion src/tables/processes/processes.darwin.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "processes.h"

Expand Down
2 changes: 1 addition & 1 deletion src/tables/processes/processes.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/tables/processes/processes.linux.bpf.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.
//
// TODO: - Expire map state on inactivity.
// - This isn't capture all processes yet I believe (see TODO on empty names below; maybe more).
Expand Down
2 changes: 1 addition & 1 deletion src/tables/processes/processes.linux.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "processes.h"

Expand Down
2 changes: 1 addition & 1 deletion src/tables/processes/processes.linux.event.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/tables/processes/processes.test.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "processes.h"

Expand Down
2 changes: 1 addition & 1 deletion src/tables/processes/processes.windows.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "processes.h"

Expand Down
2 changes: 1 addition & 1 deletion src/tables/sockets/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
# Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

target_sources(zeek-agent PRIVATE sockets.test.cc)

Expand Down
2 changes: 1 addition & 1 deletion src/tables/sockets/sockets.darwin.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.
//
// This is inspired by https://github.com/palominolabs/get_process_handles/blob/master/main.c and
// https://chromium.googlesource.com/external/github.com/giampaolo/psutil/+/refs/heads/master/psutil/_psutil_osx.c
Expand Down
2 changes: 1 addition & 1 deletion src/tables/sockets/sockets.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/tables/sockets/sockets.linux.bpf.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.
//
// TODO: - Expire map state on inactivity.
//
Expand Down
2 changes: 1 addition & 1 deletion src/tables/sockets/sockets.linux.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#include "sockets.h"

Expand Down
2 changes: 1 addition & 1 deletion src/tables/sockets/sockets.linux.event.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 by the Zeek Project. See LICENSE for details.
// Copyright (c) 2021-2024 by the Zeek Project. See LICENSE for details.

#pragma once

Expand Down
Loading

0 comments on commit 704fc7a

Please sign in to comment.