From: Stephen Hemminger Date: Wed, 11 Jan 2023 17:00:33 +0000 (-0800) Subject: netem: add SPDX license header X-Git-Tag: v6.2.0~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07b65f312f593083316aaf74f27f8b184786bb04;p=thirdparty%2Fiproute2.git 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 --- diff --git a/netem/maketable.c b/netem/maketable.c index ccb8f0c68..ad8620a47 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 90963f4e9..5414be41f 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 51d9437db..5c802c902 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 9773e370e..c36e325fc 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 ed70f1676..99c4feedf 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).