Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

agent: Clarify copyright and license in BPF program source #47

Merged
merged 2 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion agent/build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// SPDX-License-Identifier: GPL-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (C) 2023 The crypto-auditing developers.

use libbpf_cargo::SkeletonBuilder;
use std::{
Expand Down
3 changes: 2 additions & 1 deletion agent/src/bpf/audit.bpf.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* SPDX-License-Identifier: GPL-2.0 */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* Copyright (C) 2022-2023 The crypto-auditing developers. */

#include "vmlinux.h"
#include <bpf/bpf_core_read.h>
Expand Down
3 changes: 2 additions & 1 deletion agent/tests/agenttest/build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// SPDX-License-Identifier: GPL-2.0
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (C) 2023 The crypto-auditing developers.

use libbpf_cargo::SkeletonBuilder;
use std::{
Expand Down
3 changes: 2 additions & 1 deletion agent/tests/agenttest/src/bpf/agent.bpf.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* SPDX-License-Identifier: GPL-2.0 */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* Copyright (C) 2023 The crypto-auditing developers. */

#include "vmlinux.h"
#include <bpf/usdt.bpf.h>
Expand Down
1 change: 1 addition & 0 deletions crypto-auditing/build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// SPDX-License-Identifier: GPL-2.0
// Copyright (C) 2023 The crypto-auditing developers.

use std::{env, path::PathBuf};

Expand Down
3 changes: 2 additions & 1 deletion crypto-auditing/src/bpf/audit.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* SPDX-License-Identifier: GPL-2.0 */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* Copyright (C) 2023 The crypto-auditing developers. */

/* This file should be self-contained and do not rely on any system
* headers, because it is used by both the BPF program (audit.bpf.c)
Expand Down