aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2019-03-13 16:56:07 +0100
committerMarc-André Lureau <marcandre.lureau@redhat.com>2019-03-22 17:31:42 +0100
commit5a89360c59349e781ae4c9cb809a4888b29ff313 (patch)
treead8e7fb4cfe426fbcbeeefc08f978178d992dbce /src
parent5d5ebb73ee6f71aee6452dc1fc537f3095bdeea1 (diff)
downloadslirp-5a89360c59349e781ae4c9cb809a4888b29ff313.zip
slirp-5a89360c59349e781ae4c9cb809a4888b29ff313.tar.gz
slirp-5a89360c59349e781ae4c9cb809a4888b29ff313.tar.bz2
slirp: clarify license of slirp files using SPDX: implicit via unstated
Add SPDX license identifier to clarify the license of files without explicit license header. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'src')
-rw-r--r--src/bootp.h1
-rw-r--r--src/ip6.h1
-rw-r--r--src/ip6_icmp.c1
-rw-r--r--src/ip6_icmp.h1
-rw-r--r--src/ip6_input.c1
-rw-r--r--src/ip6_output.c1
-rw-r--r--src/libslirp.h1
-rw-r--r--src/ndp_table.c1
-rw-r--r--src/slirp.h1
-rw-r--r--src/stream.h1
-rw-r--r--src/tftp.h1
-rw-r--r--src/udp6.c1
12 files changed, 12 insertions, 0 deletions
diff --git a/src/bootp.h b/src/bootp.h
index f079ed5..03ece9b 100644
--- a/src/bootp.h
+++ b/src/bootp.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
/* bootp/dhcp defines */
#ifndef SLIRP_BOOTP_H
diff --git a/src/ip6.h b/src/ip6.h
index e0f66c7..0630309 100644
--- a/src/ip6.h
+++ b/src/ip6.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 2013
* Guillaume Subiron, Yann Bordenave, Serigne Modou Wagne.
diff --git a/src/ip6_icmp.c b/src/ip6_icmp.c
index 417f927..8512686 100644
--- a/src/ip6_icmp.c
+++ b/src/ip6_icmp.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 2013
* Guillaume Subiron, Yann Bordenave, Serigne Modou Wagne.
diff --git a/src/ip6_icmp.h b/src/ip6_icmp.h
index b4d2b71..c37e60f 100644
--- a/src/ip6_icmp.h
+++ b/src/ip6_icmp.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 2013
* Guillaume Subiron, Yann Bordenave, Serigne Modou Wagne.
diff --git a/src/ip6_input.c b/src/ip6_input.c
index 1b8c003..d9d2b7e 100644
--- a/src/ip6_input.c
+++ b/src/ip6_input.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 2013
* Guillaume Subiron, Yann Bordenave, Serigne Modou Wagne.
diff --git a/src/ip6_output.c b/src/ip6_output.c
index 19d1ae7..b861106 100644
--- a/src/ip6_output.c
+++ b/src/ip6_output.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 2013
* Guillaume Subiron, Yann Bordenave, Serigne Modou Wagne.
diff --git a/src/libslirp.h b/src/libslirp.h
index 9e188b9..bcd2974 100644
--- a/src/libslirp.h
+++ b/src/libslirp.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
#ifndef LIBSLIRP_H
#define LIBSLIRP_H
diff --git a/src/ndp_table.c b/src/ndp_table.c
index e852fae..110d6ea 100644
--- a/src/ndp_table.c
+++ b/src/ndp_table.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 2013
* Guillaume Subiron, Yann Bordenave, Serigne Modou Wagne.
diff --git a/src/slirp.h b/src/slirp.h
index 0f7de96..676e14a 100644
--- a/src/slirp.h
+++ b/src/slirp.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
#ifndef SLIRP_H
#define SLIRP_H
diff --git a/src/stream.h b/src/stream.h
index 985334c..08bb5b6 100644
--- a/src/stream.h
+++ b/src/stream.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
#ifndef STREAM_H_
#define STREAM_H_
diff --git a/src/tftp.h b/src/tftp.h
index dcb1048..c47bb43 100644
--- a/src/tftp.h
+++ b/src/tftp.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
/* tftp defines */
#ifndef SLIRP_TFTP_H
diff --git a/src/udp6.c b/src/udp6.c
index deffb48..6f9486b 100644
--- a/src/udp6.c
+++ b/src/udp6.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 2013
* Guillaume Subiron