aboutsummaryrefslogtreecommitdiff
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:26:12 +0100
commitf386b1d7b5e31faed522926560c4ac98001473ef (patch)
tree4f85e63f8548616625e33a44eace2a504bf1cf3d
parent1ee48730ea9cc4a113d0da9ba377018abe538120 (diff)
downloadslirp-f386b1d7b5e31faed522926560c4ac98001473ef.zip
slirp-f386b1d7b5e31faed522926560c4ac98001473ef.tar.gz
slirp-f386b1d7b5e31faed522926560c4ac98001473ef.tar.bz2
slirp: clarify license of slirp files using SPDX: explicit MIT
Add SPDX license identifier to clarify the license of files with explicit MIT license header. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com>
-rw-r--r--src/arp_table.c1
-rw-r--r--src/bootp.c1
-rw-r--r--src/dnssearch.c1
-rw-r--r--src/slirp.c1
-rw-r--r--src/state.c1
-rw-r--r--src/stream.c1
-rw-r--r--src/tftp.c1
-rw-r--r--src/util.c1
-rw-r--r--src/util.h1
9 files changed, 9 insertions, 0 deletions
diff --git a/src/arp_table.c b/src/arp_table.c
index 543e298..022a52e 100644
--- a/src/arp_table.c
+++ b/src/arp_table.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: MIT */
/*
* ARP table
*
diff --git a/src/bootp.c b/src/bootp.c
index 4eda3ce..3f9ce25 100644
--- a/src/bootp.c
+++ b/src/bootp.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: MIT */
/*
* QEMU BOOTP/DHCP server
*
diff --git a/src/dnssearch.c b/src/dnssearch.c
index b4cbca9..18a6122 100644
--- a/src/dnssearch.c
+++ b/src/dnssearch.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: MIT */
/*
* Domain search option for DHCP (RFC 3397)
*
diff --git a/src/slirp.c b/src/slirp.c
index f36b781..b0194cb 100644
--- a/src/slirp.c
+++ b/src/slirp.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: MIT */
/*
* libslirp glue
*
diff --git a/src/state.c b/src/state.c
index f852584..4a9824e 100644
--- a/src/state.c
+++ b/src/state.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: MIT */
/*
* libslirp
*
diff --git a/src/stream.c b/src/stream.c
index 7c8df59..6cf326f 100644
--- a/src/stream.c
+++ b/src/stream.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: MIT */
/*
* libslirp io streams
*
diff --git a/src/tftp.c b/src/tftp.c
index 1b7c973..093c2e0 100644
--- a/src/tftp.c
+++ b/src/tftp.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: MIT */
/*
* tftp.c - a simple, read-only tftp server for qemu
*
diff --git a/src/util.c b/src/util.c
index 97148f5..e596087 100644
--- a/src/util.c
+++ b/src/util.c
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: MIT */
/*
* util.c (mostly based on QEMU os-win32.c)
*
diff --git a/src/util.h b/src/util.h
index 0686d48..1ef08ae 100644
--- a/src/util.h
+++ b/src/util.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: MIT */
/*
* Copyright (c) 2003-2008 Fabrice Bellard
* Copyright (c) 2010-2019 Red Hat, Inc.