From 07b65f312f593083316aaf74f27f8b184786bb04 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Wed, 11 Jan 2023 09:00:33 -0800 Subject: [PATCH] netem: add SPDX license header The netem directory contains code to generate tables for netem. This code came from NISTnet which was public domain. Add appropriate license tag. Signed-off-by: Stephen Hemminger --- netem/maketable.c | 1 + netem/normal.c | 1 + netem/pareto.c | 1 + netem/paretonormal.c | 1 + netem/stats.c | 1 + 5 files changed, 5 insertions(+) diff --git a/netem/maketable.c b/netem/maketable.c index ccb8f0c6..ad8620a4 100644 --- a/netem/maketable.c +++ b/netem/maketable.c @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: NIST-PD */ /* * Experimental data distribution table generator * Taken from the uncopyrighted NISTnet code (public domain). diff --git a/netem/normal.c b/netem/normal.c index 90963f4e..5414be41 100644 --- a/netem/normal.c +++ b/netem/normal.c @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: NIST-PD */ /* * Normal distribution table generator * Taken from the uncopyrighted NISTnet code. diff --git a/netem/pareto.c b/netem/pareto.c index 51d9437d..5c802c90 100644 --- a/netem/pareto.c +++ b/netem/pareto.c @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: NIST-PD */ /* * Pareto distribution table generator * Taken from the uncopyrighted NISTnet code. diff --git a/netem/paretonormal.c b/netem/paretonormal.c index 9773e370..c36e325f 100644 --- a/netem/paretonormal.c +++ b/netem/paretonormal.c @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: NIST-PD */ /* * Paretoormal distribution table generator * diff --git a/netem/stats.c b/netem/stats.c index ed70f167..99c4feed 100644 --- a/netem/stats.c +++ b/netem/stats.c @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: NIST-PD */ /* * Experimental data distribution table generator * Taken from the uncopyrighted NISTnet code (public domain).