diff --git a/debian/copyright b/debian/copyright index 17b3afc..3a248ea 100644 --- a/debian/copyright +++ b/debian/copyright @@ -4,7 +4,7 @@ Source: http://github.com/keithw/mosh Files: * Copyright: 2012 Keith Winstein -License: GPL-3+ +License: GPL-3+ with OpenSSL exception This program is free 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 @@ -18,6 +18,20 @@ License: GPL-3+ You should have received a copy of the GNU General Public License along with this program. If not, see . . + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + . + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. + . On Debian systems, the complete text of the GNU General Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/scripts/mosh b/scripts/mosh index 75d9051..3b37048 100755 --- a/scripts/mosh +++ b/scripts/mosh @@ -15,6 +15,20 @@ # # You should have received a copy of the GNU General Public License # along with this program. If not, see . +# +# In addition, as a special exception, the copyright holders give +# permission to link the code of portions of this program with the +# OpenSSL library under certain conditions as described in each +# individual source file, and distribute linked combinations including +# the two. +# +# You must obey the GNU General Public License in all respects for all +# of the code used other than OpenSSL. If you modify file(s) with this +# exception, you may extend this exception to your version of the +# file(s), but you are not obligated to do so. If you do not wish to do +# so, delete this exception statement from your version. If you delete +# this exception statement from all source files in the program, then +# also delete it here. my $MOSH_VERSION = '1.2.2'; diff --git a/src/crypto/base64.cc b/src/crypto/base64.cc index 55ebee7..4d42935 100644 --- a/src/crypto/base64.cc +++ b/src/crypto/base64.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/crypto/base64.h b/src/crypto/base64.h index 9577339..9fd705e 100644 --- a/src/crypto/base64.h +++ b/src/crypto/base64.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ bool base64_decode( const char *b64, const size_t b64_len, diff --git a/src/crypto/byteorder.h b/src/crypto/byteorder.h index a341427..a5f0a47 100644 --- a/src/crypto/byteorder.h +++ b/src/crypto/byteorder.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef BYTEORDER_HPP diff --git a/src/crypto/crypto.cc b/src/crypto/crypto.cc index 05a0b29..50b60d9 100644 --- a/src/crypto/crypto.cc +++ b/src/crypto/crypto.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/crypto/crypto.h b/src/crypto/crypto.h index 1754c4c..81a5aea 100644 --- a/src/crypto/crypto.h +++ b/src/crypto/crypto.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef CRYPTO_HPP diff --git a/src/crypto/prng.h b/src/crypto/prng.h index 2f0287c..0de7747 100644 --- a/src/crypto/prng.h +++ b/src/crypto/prng.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef PRNG_HPP diff --git a/src/examples/benchmark.cc b/src/examples/benchmark.cc index 6ecdebd..d0690e6 100644 --- a/src/examples/benchmark.cc +++ b/src/examples/benchmark.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include "config.h" diff --git a/src/examples/decrypt.cc b/src/examples/decrypt.cc index 37f03e1..eb4e9fc 100644 --- a/src/examples/decrypt.cc +++ b/src/examples/decrypt.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/examples/encrypt.cc b/src/examples/encrypt.cc index c406fd1..3bf0d64 100644 --- a/src/examples/encrypt.cc +++ b/src/examples/encrypt.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/examples/ntester.cc b/src/examples/ntester.cc index d8184a9..be7746f 100644 --- a/src/examples/ntester.cc +++ b/src/examples/ntester.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/examples/parse.cc b/src/examples/parse.cc index 1829798..590a1c3 100644 --- a/src/examples/parse.cc +++ b/src/examples/parse.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include "config.h" diff --git a/src/examples/termemu.cc b/src/examples/termemu.cc index 51836a4..b6551b3 100644 --- a/src/examples/termemu.cc +++ b/src/examples/termemu.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include "config.h" diff --git a/src/frontend/mosh-client.cc b/src/frontend/mosh-client.cc index a9ab798..a9644e3 100644 --- a/src/frontend/mosh-client.cc +++ b/src/frontend/mosh-client.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include "config.h" diff --git a/src/frontend/mosh-server.cc b/src/frontend/mosh-server.cc index de99f4f..2d5cade 100644 --- a/src/frontend/mosh-server.cc +++ b/src/frontend/mosh-server.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include "config.h" diff --git a/src/frontend/stmclient.cc b/src/frontend/stmclient.cc index 3ba7b36..cee241f 100644 --- a/src/frontend/stmclient.cc +++ b/src/frontend/stmclient.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include "config.h" diff --git a/src/frontend/stmclient.h b/src/frontend/stmclient.h index 16ed9ba..d939dcf 100644 --- a/src/frontend/stmclient.h +++ b/src/frontend/stmclient.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef STM_CLIENT_HPP diff --git a/src/frontend/terminaloverlay.cc b/src/frontend/terminaloverlay.cc index fcaae46..0d0cbcb 100644 --- a/src/frontend/terminaloverlay.cc +++ b/src/frontend/terminaloverlay.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/frontend/terminaloverlay.h b/src/frontend/terminaloverlay.h index 2114327..0fd0c85 100644 --- a/src/frontend/terminaloverlay.h +++ b/src/frontend/terminaloverlay.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef TERMINAL_OVERLAY_HPP diff --git a/src/network/compressor.cc b/src/network/compressor.cc index 37c95c5..da93d76 100644 --- a/src/network/compressor.cc +++ b/src/network/compressor.cc @@ -1,3 +1,35 @@ +/* + Mosh: the mobile shell + Copyright 2012 Keith Winstein + + This program is free 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 + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. +*/ + #include #include "compressor.h" diff --git a/src/network/compressor.h b/src/network/compressor.h index ffeca99..dd2da6d 100644 --- a/src/network/compressor.h +++ b/src/network/compressor.h @@ -1,3 +1,35 @@ +/* + Mosh: the mobile shell + Copyright 2012 Keith Winstein + + This program is free 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 + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. +*/ + #ifndef COMPRESSOR_H #define COMPRESSOR_H diff --git a/src/network/network.cc b/src/network/network.cc index a1235a1..bf186d2 100644 --- a/src/network/network.cc +++ b/src/network/network.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include "config.h" diff --git a/src/network/network.h b/src/network/network.h index 83a29c4..68e4f3a 100644 --- a/src/network/network.h +++ b/src/network/network.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef NETWORK_HPP diff --git a/src/network/networktransport.cc b/src/network/networktransport.cc index 9a917d7..7db4ef6 100644 --- a/src/network/networktransport.cc +++ b/src/network/networktransport.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/network/networktransport.h b/src/network/networktransport.h index 7019dd8..cadaf82 100644 --- a/src/network/networktransport.h +++ b/src/network/networktransport.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef NETWORK_TRANSPORT_HPP diff --git a/src/network/transportfragment.cc b/src/network/transportfragment.cc index 2aeffd5..6a628c7 100644 --- a/src/network/transportfragment.cc +++ b/src/network/transportfragment.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/network/transportfragment.h b/src/network/transportfragment.h index f55ee67..7c80eb5 100644 --- a/src/network/transportfragment.h +++ b/src/network/transportfragment.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef TRANSPORT_FRAGMENT_HPP diff --git a/src/network/transportsender.cc b/src/network/transportsender.cc index 5a4b58a..cbba3c9 100644 --- a/src/network/transportsender.cc +++ b/src/network/transportsender.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/network/transportsender.h b/src/network/transportsender.h index 8af4990..0a205e1 100644 --- a/src/network/transportsender.h +++ b/src/network/transportsender.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ diff --git a/src/network/transportstate.h b/src/network/transportstate.h index 09a3a75..efe3c59 100644 --- a/src/network/transportstate.h +++ b/src/network/transportstate.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef TRANSPORT_STATE_HPP diff --git a/src/statesync/completeterminal.cc b/src/statesync/completeterminal.cc index 5e13109..dc117b5 100644 --- a/src/statesync/completeterminal.cc +++ b/src/statesync/completeterminal.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include "completeterminal.h" diff --git a/src/statesync/completeterminal.h b/src/statesync/completeterminal.h index e849057..662853e 100644 --- a/src/statesync/completeterminal.h +++ b/src/statesync/completeterminal.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef COMPLETE_TERMINAL_HPP diff --git a/src/statesync/user.cc b/src/statesync/user.cc index 90ebe5a..1303eed 100644 --- a/src/statesync/user.cc +++ b/src/statesync/user.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/statesync/user.h b/src/statesync/user.h index 84cb497..eacccf7 100644 --- a/src/statesync/user.h +++ b/src/statesync/user.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef USER_HPP diff --git a/src/terminal/parser.cc b/src/terminal/parser.cc index 42bbbdb..5008184 100644 --- a/src/terminal/parser.cc +++ b/src/terminal/parser.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/terminal/parser.h b/src/terminal/parser.h index eb865b4..e910e1a 100644 --- a/src/terminal/parser.h +++ b/src/terminal/parser.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef PARSER_HPP diff --git a/src/terminal/parseraction.cc b/src/terminal/parseraction.cc index 5d77958..43a9c70 100644 --- a/src/terminal/parseraction.cc +++ b/src/terminal/parseraction.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/terminal/parseraction.h b/src/terminal/parseraction.h index 096029f..ce55490 100644 --- a/src/terminal/parseraction.h +++ b/src/terminal/parseraction.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef PARSERACTION_HPP diff --git a/src/terminal/parserstate.cc b/src/terminal/parserstate.cc index 0e97c7d..b5d8a44 100644 --- a/src/terminal/parserstate.cc +++ b/src/terminal/parserstate.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include "parserstate.h" diff --git a/src/terminal/parserstate.h b/src/terminal/parserstate.h index 3e059c9..64406ce 100644 --- a/src/terminal/parserstate.h +++ b/src/terminal/parserstate.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef PARSERSTATE_HPP diff --git a/src/terminal/parserstatefamily.h b/src/terminal/parserstatefamily.h index 6f41b50..d8668aa 100644 --- a/src/terminal/parserstatefamily.h +++ b/src/terminal/parserstatefamily.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef PARSERSTATEFAMILY_HPP diff --git a/src/terminal/parsertransition.h b/src/terminal/parsertransition.h index 9c13de9..61c1d1d 100644 --- a/src/terminal/parsertransition.h +++ b/src/terminal/parsertransition.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef PARSERTRANSITION_HPP diff --git a/src/terminal/terminal.cc b/src/terminal/terminal.cc index 3b2439d..1dfc3df 100644 --- a/src/terminal/terminal.cc +++ b/src/terminal/terminal.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/terminal/terminal.h b/src/terminal/terminal.h index c7b5d29..5c8fc2e 100644 --- a/src/terminal/terminal.h +++ b/src/terminal/terminal.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef TERMINAL_CPP diff --git a/src/terminal/terminaldispatcher.cc b/src/terminal/terminaldispatcher.cc index aa1aa53..f762aec 100644 --- a/src/terminal/terminaldispatcher.cc +++ b/src/terminal/terminaldispatcher.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/terminal/terminaldispatcher.h b/src/terminal/terminaldispatcher.h index f5f801c..f1ea703 100644 --- a/src/terminal/terminaldispatcher.h +++ b/src/terminal/terminaldispatcher.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef TERMINALDISPATCHER_HPP diff --git a/src/terminal/terminaldisplay.cc b/src/terminal/terminaldisplay.cc index db9d9fb..223e3fb 100644 --- a/src/terminal/terminaldisplay.cc +++ b/src/terminal/terminaldisplay.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/terminal/terminaldisplay.h b/src/terminal/terminaldisplay.h index a3441a0..d3779ab 100644 --- a/src/terminal/terminaldisplay.h +++ b/src/terminal/terminaldisplay.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef TERMINALDISPLAY_HPP diff --git a/src/terminal/terminaldisplayinit.cc b/src/terminal/terminaldisplayinit.cc index d310774..09e94c9 100644 --- a/src/terminal/terminaldisplayinit.cc +++ b/src/terminal/terminaldisplayinit.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ /* This is in its own file because otherwise the ncurses #defines diff --git a/src/terminal/terminalframebuffer.cc b/src/terminal/terminalframebuffer.cc index 802f004..6eaa5db 100644 --- a/src/terminal/terminalframebuffer.cc +++ b/src/terminal/terminalframebuffer.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/terminal/terminalframebuffer.h b/src/terminal/terminalframebuffer.h index e11c51a..ff3ab0d 100644 --- a/src/terminal/terminalframebuffer.h +++ b/src/terminal/terminalframebuffer.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef TERMINALFB_HPP diff --git a/src/terminal/terminalfunctions.cc b/src/terminal/terminalfunctions.cc index 1f5d0cd..26fe564 100644 --- a/src/terminal/terminalfunctions.cc +++ b/src/terminal/terminalfunctions.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/terminal/terminaluserinput.cc b/src/terminal/terminaluserinput.cc index 597c552..6aca086 100644 --- a/src/terminal/terminaluserinput.cc +++ b/src/terminal/terminaluserinput.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/terminal/terminaluserinput.h b/src/terminal/terminaluserinput.h index 465508c..a1c8ea0 100644 --- a/src/terminal/terminaluserinput.h +++ b/src/terminal/terminaluserinput.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef TERMINALUSERINPUT_HPP diff --git a/src/tests/encrypt-decrypt.cc b/src/tests/encrypt-decrypt.cc index c88bdfb..93ca16f 100644 --- a/src/tests/encrypt-decrypt.cc +++ b/src/tests/encrypt-decrypt.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ /* Tests the Mosh crypto layer by encrypting and decrypting a bunch of random diff --git a/src/tests/ocb-aes.cc b/src/tests/ocb-aes.cc index 63418d2..1fd3a85 100644 --- a/src/tests/ocb-aes.cc +++ b/src/tests/ocb-aes.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ /* Test suite for the OCB-AES reference implementation included with Mosh. diff --git a/src/tests/test_utils.cc b/src/tests/test_utils.cc index 3d16e71..431bad7 100644 --- a/src/tests/test_utils.cc +++ b/src/tests/test_utils.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/tests/test_utils.h b/src/tests/test_utils.h index 9711d4a..41e6b3f 100644 --- a/src/tests/test_utils.h +++ b/src/tests/test_utils.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef TEST_UTILS_HPP diff --git a/src/util/dos_assert.h b/src/util/dos_assert.h index eb84585..679acf2 100644 --- a/src/util/dos_assert.h +++ b/src/util/dos_assert.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef DOS_ASSERT_HPP diff --git a/src/util/fatal_assert.h b/src/util/fatal_assert.h index e5bf961..6c225a6 100644 --- a/src/util/fatal_assert.h +++ b/src/util/fatal_assert.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef FATAL_ASSERT_HPP diff --git a/src/util/locale_utils.cc b/src/util/locale_utils.cc index 6adb6a2..11923ff 100644 --- a/src/util/locale_utils.cc +++ b/src/util/locale_utils.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include "config.h" diff --git a/src/util/locale_utils.h b/src/util/locale_utils.h index 977b089..2510ed4 100644 --- a/src/util/locale_utils.h +++ b/src/util/locale_utils.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef LOCALE_UTILS_HPP diff --git a/src/util/select.cc b/src/util/select.cc index 197f83f..0837161 100644 --- a/src/util/select.cc +++ b/src/util/select.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include "select.h" diff --git a/src/util/select.h b/src/util/select.h index a5b710c..6a2de72 100644 --- a/src/util/select.h +++ b/src/util/select.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef SELECT_HPP diff --git a/src/util/swrite.cc b/src/util/swrite.cc index 56d07fc..64a772c 100644 --- a/src/util/swrite.cc +++ b/src/util/swrite.cc @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #include diff --git a/src/util/swrite.h b/src/util/swrite.h index 0dcd458..e75bf7e 100644 --- a/src/util/swrite.h +++ b/src/util/swrite.h @@ -14,6 +14,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations including + the two. + + You must obey the GNU General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. If you delete + this exception statement from all source files in the program, then + also delete it here. */ #ifndef SWRITE_HPP