summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-10-28 23:48:25 +0000
committerChristian Pointner <equinox@anytun.org>2009-10-28 23:48:25 +0000
commit4d7293234128f37f390a34a11553ef060badce56 (patch)
treeebcd4cbce55d1d4e8f9e238ab1d531a48c8f842b
parentfixed build on FreeBSD (diff)
switched to GPLv3 or higher
-rw-r--r--LICENSE5
-rw-r--r--debian/copyright5
-rw-r--r--doc/Makefile5
-rw-r--r--doc/uanytun.8.txt7
-rw-r--r--src/Makefile5
-rw-r--r--src/auth_algo.c5
-rw-r--r--src/auth_algo.h5
-rw-r--r--src/bsd/tun.c5
-rw-r--r--src/cipher.c5
-rw-r--r--src/cipher.h5
-rwxr-xr-xsrc/configure5
-rw-r--r--src/daemon.h5
-rw-r--r--src/datatypes.h5
-rw-r--r--src/encrypted_packet.c5
-rw-r--r--src/encrypted_packet.h5
-rw-r--r--src/key_derivation.c5
-rw-r--r--src/key_derivation.h5
-rw-r--r--src/linux/tun.c5
-rw-r--r--src/log.c5
-rw-r--r--src/log.h5
-rw-r--r--src/log_targets.h5
-rw-r--r--src/options.c5
-rw-r--r--src/options.h5
-rw-r--r--src/plain_packet.c5
-rw-r--r--src/plain_packet.h5
-rw-r--r--src/seq_window.c5
-rw-r--r--src/seq_window.h5
-rw-r--r--src/sig_handler.c5
-rw-r--r--src/sig_handler.h5
-rw-r--r--src/string_list.c5
-rw-r--r--src/string_list.h5
-rw-r--r--src/sysexec.c5
-rw-r--r--src/sysexec.h5
-rw-r--r--src/tun.h5
-rw-r--r--src/tun_helper.h5
-rw-r--r--src/uanytun.c5
-rw-r--r--src/udp.c5
-rw-r--r--src/udp.h5
38 files changed, 114 insertions, 78 deletions
diff --git a/LICENSE b/LICENSE
index 72582db..1406bb5 100644
--- a/LICENSE
+++ b/LICENSE
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/debian/copyright b/debian/copyright
index fc349d5..37c9ff0 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -14,8 +14,9 @@ Copyright:
License:
uAnytun is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License version 3 as
- published by the Free Software Foundation.
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ any later version.
uAnytun is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/doc/Makefile b/doc/Makefile
index f49deda..7ed7c50 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -20,8 +20,9 @@
## This file is part of uAnytun.
##
## uAnytun is free software: you can redistribute it and/or modify
-## it under the terms of the GNU General Public License version 3 as
-## published by the Free Software Foundation.
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation, either version 3 of the License, or
+## any later version.
##
## uAnytun is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/doc/uanytun.8.txt b/doc/uanytun.8.txt
index 311c54a..7cd4f52 100644
--- a/doc/uanytun.8.txt
+++ b/doc/uanytun.8.txt
@@ -364,7 +364,6 @@ COPYING
-------
Copyright \(C) 2008-2009 Christian Pointner. This program is free
-software; you can redistribute it and/or modify it under the terms
-of the GNU General Public License version 3 as published by the
-Free Software Foundation.
-
+software: you can redistribute it and/or modify it under the terms
+of the GNU General Public License as published by the Free Software
+Foundation, either version 3 of the License, or any later version.
diff --git a/src/Makefile b/src/Makefile
index e4b6a92..bbcf6a6 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -20,8 +20,9 @@
## This file is part of uAnytun.
##
## uAnytun is free software: you can redistribute it and/or modify
-## it under the terms of the GNU General Public License version 3 as
-## published by the Free Software Foundation.
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation, either version 3 of the License, or
+## any later version.
##
## uAnytun is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/auth_algo.c b/src/auth_algo.c
index d015cc5..69d4ec0 100644
--- a/src/auth_algo.c
+++ b/src/auth_algo.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/auth_algo.h b/src/auth_algo.h
index baf32c5..452fadf 100644
--- a/src/auth_algo.h
+++ b/src/auth_algo.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/bsd/tun.c b/src/bsd/tun.c
index 966ac77..21d16a4 100644
--- a/src/bsd/tun.c
+++ b/src/bsd/tun.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/cipher.c b/src/cipher.c
index 5fba4af..a91facb 100644
--- a/src/cipher.c
+++ b/src/cipher.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/cipher.h b/src/cipher.h
index f53e412..e25e9a5 100644
--- a/src/cipher.h
+++ b/src/cipher.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/configure b/src/configure
index d88e333..e5954fd 100755
--- a/src/configure
+++ b/src/configure
@@ -21,8 +21,9 @@
# This file is part of uAnytun.
#
# uAnytun is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License version 3 as
-# published by the Free Software Foundation.
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# any later version.
#
# uAnytun is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/daemon.h b/src/daemon.h
index ac0516e..afe1a27 100644
--- a/src/daemon.h
+++ b/src/daemon.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/datatypes.h b/src/datatypes.h
index 3925f26..1ac5d02 100644
--- a/src/datatypes.h
+++ b/src/datatypes.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/encrypted_packet.c b/src/encrypted_packet.c
index 53387f3..c6db3d8 100644
--- a/src/encrypted_packet.c
+++ b/src/encrypted_packet.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/encrypted_packet.h b/src/encrypted_packet.h
index e9cdc59..ef73a8b 100644
--- a/src/encrypted_packet.h
+++ b/src/encrypted_packet.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/key_derivation.c b/src/key_derivation.c
index e9ab15f..7e98416 100644
--- a/src/key_derivation.c
+++ b/src/key_derivation.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/key_derivation.h b/src/key_derivation.h
index c6212f1..1fd5113 100644
--- a/src/key_derivation.h
+++ b/src/key_derivation.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/linux/tun.c b/src/linux/tun.c
index 3fdf817..10037ea 100644
--- a/src/linux/tun.c
+++ b/src/linux/tun.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/log.c b/src/log.c
index 8f7deb3..43a0a5a 100644
--- a/src/log.c
+++ b/src/log.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/log.h b/src/log.h
index 46ea867..fc97549 100644
--- a/src/log.h
+++ b/src/log.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/log_targets.h b/src/log_targets.h
index 5489279..ca2d762 100644
--- a/src/log_targets.h
+++ b/src/log_targets.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/options.c b/src/options.c
index 9924bf5..f5010bf 100644
--- a/src/options.c
+++ b/src/options.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/options.h b/src/options.h
index 0f73a0b..c5970e8 100644
--- a/src/options.h
+++ b/src/options.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/plain_packet.c b/src/plain_packet.c
index 1d7ba2b..6995d42 100644
--- a/src/plain_packet.c
+++ b/src/plain_packet.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/plain_packet.h b/src/plain_packet.h
index ed42893..f9c311c 100644
--- a/src/plain_packet.h
+++ b/src/plain_packet.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/seq_window.c b/src/seq_window.c
index 6c49d2f..a855f68 100644
--- a/src/seq_window.c
+++ b/src/seq_window.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/seq_window.h b/src/seq_window.h
index 2191d53..9d034e8 100644
--- a/src/seq_window.h
+++ b/src/seq_window.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/sig_handler.c b/src/sig_handler.c
index 30929e7..ca2e18f 100644
--- a/src/sig_handler.c
+++ b/src/sig_handler.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/sig_handler.h b/src/sig_handler.h
index 4fd5efe..bc583bb 100644
--- a/src/sig_handler.h
+++ b/src/sig_handler.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/string_list.c b/src/string_list.c
index f23fcdc..e5e8a62 100644
--- a/src/string_list.c
+++ b/src/string_list.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/string_list.h b/src/string_list.h
index fc1f4ac..ed4ef13 100644
--- a/src/string_list.h
+++ b/src/string_list.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/sysexec.c b/src/sysexec.c
index dbf4bbb..2cea52e 100644
--- a/src/sysexec.c
+++ b/src/sysexec.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/sysexec.h b/src/sysexec.h
index 5872454..13ae2bf 100644
--- a/src/sysexec.h
+++ b/src/sysexec.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/tun.h b/src/tun.h
index 6e7c302..daa4def 100644
--- a/src/tun.h
+++ b/src/tun.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/tun_helper.h b/src/tun_helper.h
index 396d902..1f53f25 100644
--- a/src/tun_helper.h
+++ b/src/tun_helper.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/uanytun.c b/src/uanytun.c
index 81a293b..0e36781 100644
--- a/src/uanytun.c
+++ b/src/uanytun.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/udp.c b/src/udp.c
index 96e2e23..7f539a8 100644
--- a/src/udp.c
+++ b/src/udp.c
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/src/udp.h b/src/udp.h
index aacdae8..622eb4c 100644
--- a/src/udp.h
+++ b/src/udp.h
@@ -20,8 +20,9 @@
* This file is part of uAnytun.
*
* uAnytun is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
*
* uAnytun is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of