From cb75362ccc078b6b90ab10f8f300d27b5c718a95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrien.beraud@savoirfairelinux.com> Date: Mon, 17 Jul 2023 22:32:49 -0400 Subject: [PATCH] update copyright headers Change-Id: Iaf067f0d85becaefb021419c5ff383a0f63eab06 --- include/certstore.h | 15 ++++----------- include/connectionmanager.h | 6 +++--- include/diffie-hellman.h | 13 ++++--------- include/fileutils.h | 14 +++++--------- include/generic_io.h | 6 +++--- include/ice_options.h | 16 ++++++++++++++++ include/ice_socket.h | 11 ++++------- include/ice_transport.h | 12 ++++-------- include/ice_transport_factory.h | 12 ++++-------- include/ip_utils.h | 6 +++--- include/multiplexed_socket.h | 6 +++--- include/string_utils.h | 13 ++++--------- include/tls_session.h | 15 ++++----------- include/upnp/mapping.h | 13 ++++--------- include/upnp/upnp_context.h | 14 ++++---------- include/upnp/upnp_control.h | 14 ++++---------- include/upnp/upnp_thread_util.h | 16 ++++++++++++++++ src/connectionmanager.cpp | 9 ++++----- src/fileutils.cpp | 12 ++++-------- src/ice_transport.cpp | 12 ++++-------- src/ip_utils.cpp | 12 ++++-------- src/multiplexed_socket.cpp | 10 ++++------ src/peer_connection.cpp | 13 ++++--------- src/peer_connection.h | 13 ++++--------- src/security/certstore.cpp | 13 ++++--------- src/security/diffie-hellman.cpp | 12 ++++-------- src/security/security_const.h | 11 ++++------- src/security/threadloop.cpp | 12 ++++-------- src/security/threadloop.h | 13 ++++--------- src/security/tls_session.cpp | 14 ++++---------- src/sip_utils.h | 12 ++++-------- src/string_utils.cpp | 13 ++++--------- src/tracepoint/trace-tools.h | 14 +++++--------- src/tracepoint/tracepoint.h | 14 +++++--------- src/transport/peer_channel.h | 8 +++----- src/upnp/protocol/igd.cpp | 14 ++++---------- src/upnp/protocol/igd.h | 12 ++++-------- src/upnp/protocol/mapping.cpp | 14 ++++---------- src/upnp/protocol/natpmp/nat_pmp.cpp | 13 ++++--------- src/upnp/protocol/natpmp/nat_pmp.h | 13 ++++--------- src/upnp/protocol/natpmp/pmp_igd.cpp | 14 ++++---------- src/upnp/protocol/natpmp/pmp_igd.h | 13 ++++--------- src/upnp/protocol/pupnp/pupnp.cpp | 15 ++++----------- src/upnp/protocol/pupnp/pupnp.h | 14 ++++---------- src/upnp/protocol/pupnp/upnp_igd.cpp | 14 ++++---------- src/upnp/protocol/pupnp/upnp_igd.h | 14 ++++---------- src/upnp/protocol/upnp_protocol.h | 13 ++++--------- src/upnp/upnp_context.cpp | 14 ++++---------- src/upnp/upnp_control.cpp | 14 ++++---------- tests/certstore.cpp | 12 ++++-------- tests/connectionManager.cpp | 10 ++++------ tests/testFileutils.cpp | 11 ++++------- tests/testString_utils.cpp | 11 ++++------- 53 files changed, 234 insertions(+), 420 deletions(-) diff --git a/include/certstore.h b/include/certstore.h index 06b5dc1..289d400 100644 --- a/include/certstore.h +++ b/include/certstore.h @@ -1,28 +1,21 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Adrien Béraud <adrien.beraud@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once -//#include "security_const.h" -//#include "noncopyable.h" - #include <opendht/crypto.h> #include <string> diff --git a/include/connectionmanager.h b/include/connectionmanager.h index 38cd963..99c7466 100644 --- a/include/connectionmanager.h +++ b/include/connectionmanager.h @@ -1,14 +1,14 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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 diff --git a/include/diffie-hellman.h b/include/diffie-hellman.h index 56fc064..3642a96 100644 --- a/include/diffie-hellman.h +++ b/include/diffie-hellman.h @@ -1,24 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Adrien Béraud <adrien.beraud@savoirfairelinux.com> - * Author: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #include <gnutls/gnutls.h> diff --git a/include/fileutils.h b/include/fileutils.h index c2dcdc9..5116e22 100644 --- a/include/fileutils.h +++ b/include/fileutils.h @@ -1,23 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Rafaël Carré <rafael.carre@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #include <string> @@ -113,7 +109,7 @@ std::mutex& getFileLock(const std::string& path); * Remove a file with optional erasing of content. * Return the same value as std::remove(). */ -//int remove(const std::string& path, bool erase = false); +int remove(const std::string& path, bool erase = false); /** * Prune given directory's content and remove it, symlinks are not followed. diff --git a/include/generic_io.h b/include/generic_io.h index db0ce33..3ad9c80 100644 --- a/include/generic_io.h +++ b/include/generic_io.h @@ -1,14 +1,14 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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 diff --git a/include/ice_options.h b/include/ice_options.h index d3a9e83..b587512 100644 --- a/include/ice_options.h +++ b/include/ice_options.h @@ -1,3 +1,19 @@ +/* + * Copyright (C) 2004-2023 Savoir-faire Linux Inc. + * + * 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 <https://www.gnu.org/licenses/>. + */ #pragma once #include "ip_utils.h" diff --git a/include/ice_socket.h b/include/ice_socket.h index 5e3c175..4a6b457 100644 --- a/include/ice_socket.h +++ b/include/ice_socket.h @@ -1,21 +1,18 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #pragma once diff --git a/include/ice_transport.h b/include/ice_transport.h index 7403e99..d1bba38 100644 --- a/include/ice_transport.h +++ b/include/ice_transport.h @@ -1,23 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #include "ice_options.h" diff --git a/include/ice_transport_factory.h b/include/ice_transport_factory.h index 5b34e9f..ecb04b0 100644 --- a/include/ice_transport_factory.h +++ b/include/ice_transport_factory.h @@ -1,23 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #include "ice_options.h" diff --git a/include/ip_utils.h b/include/ip_utils.h index cf88124..b13e563 100644 --- a/include/ip_utils.h +++ b/include/ip_utils.h @@ -1,14 +1,14 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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 diff --git a/include/multiplexed_socket.h b/include/multiplexed_socket.h index 23c1ba1..7b62fc3 100644 --- a/include/multiplexed_socket.h +++ b/include/multiplexed_socket.h @@ -1,14 +1,14 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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 diff --git a/include/string_utils.h b/include/string_utils.h index 5d7e2eb..e9876df 100644 --- a/include/string_utils.h +++ b/include/string_utils.h @@ -1,24 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Tristan Matthews <tristan.matthews@savoirfairelinux.com> - * Author: Adrien Béraud <adrien.beraud@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #include <cstdint> diff --git a/include/tls_session.h b/include/tls_session.h index 19db4fc..87e84a2 100644 --- a/include/tls_session.h +++ b/include/tls_session.h @@ -1,26 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Adrien Béraud <adrien.beraud@savoirfairelinux.com> - * Author: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> - * Author: Sébastien Blin <sebastien.blin@savoirfairelinux.com> - * Author: Vsevolod Ivanov <vsevolod.ivanov@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once //#include "noncopyable.h" diff --git a/include/upnp/mapping.h b/include/upnp/mapping.h index 19e6421..d22e642 100644 --- a/include/upnp/mapping.h +++ b/include/upnp/mapping.h @@ -1,24 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #include "../ip_utils.h" diff --git a/include/upnp/upnp_context.h b/include/upnp/upnp_context.h index 2ac63cd..1ed96ea 100644 --- a/include/upnp/upnp_context.h +++ b/include/upnp/upnp_context.h @@ -1,25 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com> - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once /*#include "upnp_protocol.h" diff --git a/include/upnp/upnp_control.h b/include/upnp/upnp_control.h index 236c0c7..3926e90 100644 --- a/include/upnp/upnp_control.h +++ b/include/upnp/upnp_control.h @@ -1,25 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com> - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #include "mapping.h" diff --git a/include/upnp/upnp_thread_util.h b/include/upnp/upnp_thread_util.h index 564a6eb..8ba06d6 100644 --- a/include/upnp/upnp_thread_util.h +++ b/include/upnp/upnp_thread_util.h @@ -1,3 +1,19 @@ +/* + * Copyright (C) 2004-2023 Savoir-faire Linux Inc. + * + * 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 <https://www.gnu.org/licenses/>. + */ #pragma once #include <thread> diff --git a/src/connectionmanager.cpp b/src/connectionmanager.cpp index 87fcae2..9d955a5 100644 --- a/src/connectionmanager.cpp +++ b/src/connectionmanager.cpp @@ -1,15 +1,14 @@ /* - * Copyright (C) 2019-2023 Savoir-faire Linux Inc. - * Author: Sébastien Blin <sebastien.blin@savoirfairelinux.com> + * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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 diff --git a/src/fileutils.cpp b/src/fileutils.cpp index 1067963..565263c 100644 --- a/src/fileutils.cpp +++ b/src/fileutils.cpp @@ -1,23 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Rafaël Carré <rafael.carre@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "fileutils.h" #include <opendht/crypto.h> diff --git a/src/ice_transport.cpp b/src/ice_transport.cpp index 9b73507..0318a3d 100644 --- a/src/ice_transport.cpp +++ b/src/ice_transport.cpp @@ -1,23 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "ice_transport.h" #include "ice_transport_factory.h" #include "ice_socket.h" diff --git a/src/ip_utils.cpp b/src/ip_utils.cpp index 2d8f098..e3fd748 100644 --- a/src/ip_utils.cpp +++ b/src/ip_utils.cpp @@ -1,23 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Adrien Béraud <adrien.beraud@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "ip_utils.h" #include "logger.h" diff --git a/src/multiplexed_socket.cpp b/src/multiplexed_socket.cpp index faf680e..085514b 100644 --- a/src/multiplexed_socket.cpp +++ b/src/multiplexed_socket.cpp @@ -1,21 +1,19 @@ /* - * Copyright (C) 2019-2023 Savoir-faire Linux Inc. - * Author: Sébastien Blin <sebastien.blin@savoirfairelinux.com> + * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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 <https://www.gnu.org/licenses/>. */ - #include "multiplexed_socket.h" #include "peer_connection.h" #include "ice_transport.h" diff --git a/src/peer_connection.cpp b/src/peer_connection.cpp index 8b6b8a9..a2c0615 100644 --- a/src/peer_connection.cpp +++ b/src/peer_connection.cpp @@ -1,24 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> - * Author: Sébastien Blin <sebastien.blin@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "peer_connection.h" #include "tls_session.h" diff --git a/src/peer_connection.h b/src/peer_connection.h index 484562a..962e8d0 100644 --- a/src/peer_connection.h +++ b/src/peer_connection.h @@ -1,24 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> - * Author: Sébastien Blin <sebastien.blin@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #include "ip_utils.h" diff --git a/src/security/certstore.cpp b/src/security/certstore.cpp index f9876ef..865493b 100644 --- a/src/security/certstore.cpp +++ b/src/security/certstore.cpp @@ -1,24 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Adrien Béraud <adrien.beraud@savoirfairelinux.com> - * Author: Vsevolod Ivanov <vsevolod.ivanov@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "certstore.h" #include "security_const.h" diff --git a/src/security/diffie-hellman.cpp b/src/security/diffie-hellman.cpp index 450a7a0..b9970ea 100644 --- a/src/security/diffie-hellman.cpp +++ b/src/security/diffie-hellman.cpp @@ -1,23 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "diffie-hellman.h" #include "logger.h" #include "fileutils.h" diff --git a/src/security/security_const.h b/src/security/security_const.h index 0160e36..0873e1b 100644 --- a/src/security/security_const.h +++ b/src/security/security_const.h @@ -1,21 +1,18 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Philippe Proulx <philippe.proulx@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #pragma once diff --git a/src/security/threadloop.cpp b/src/security/threadloop.cpp index 5db493e..ab570f2 100644 --- a/src/security/threadloop.cpp +++ b/src/security/threadloop.cpp @@ -1,23 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Guillaume Roguez <Guillaume.Roguez@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "threadloop.h" #include <ciso646> // fix windows compiler bug diff --git a/src/security/threadloop.h b/src/security/threadloop.h index de4e475..5852424 100644 --- a/src/security/threadloop.h +++ b/src/security/threadloop.h @@ -1,24 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Guillaume Roguez <Guillaume.Roguez@savoirfairelinux.com> - * Author: Eloi Bail <Eloi.Bail@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #include <atomic> diff --git a/src/security/tls_session.cpp b/src/security/tls_session.cpp index 94078a3..ef85637 100644 --- a/src/security/tls_session.cpp +++ b/src/security/tls_session.cpp @@ -1,24 +1,18 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Adrien Béraud <adrien.beraud@savoirfairelinux.com> - * Author: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> - * Author: Sébastien Blin <sebastien.blin@savoirfairelinux.com> - * Author: Vsevolod Ivanov <vsevolod.ivanov@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include "tls_session.h" #include "threadloop.h" diff --git a/src/sip_utils.h b/src/sip_utils.h index 453344e..25b2a2e 100644 --- a/src/sip_utils.h +++ b/src/sip_utils.h @@ -1,23 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Tristan Matthews <tristan.matthews@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #include "ip_utils.h" diff --git a/src/string_utils.cpp b/src/string_utils.cpp index 3ab4359..e3141ae 100644 --- a/src/string_utils.cpp +++ b/src/string_utils.cpp @@ -1,24 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Tristan Matthews <tristan.matthews@savoirfairelinux.com> - * Author: Adrien Béraud <adrien.beraud@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "string_utils.h" #include <fmt/core.h> diff --git a/src/tracepoint/trace-tools.h b/src/tracepoint/trace-tools.h index ccd65cd..3e1f0ff 100644 --- a/src/tracepoint/trace-tools.h +++ b/src/tracepoint/trace-tools.h @@ -1,23 +1,19 @@ /* - * Copyright (C) 2022-2023 Savoir-faire Linux Inc. + * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Olivier Dion <olivier.dion@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #ifdef ENABLE_TRACEPOINTS diff --git a/src/tracepoint/tracepoint.h b/src/tracepoint/tracepoint.h index 1e7f9a3..83c4d70 100644 --- a/src/tracepoint/tracepoint.h +++ b/src/tracepoint/tracepoint.h @@ -1,23 +1,19 @@ /* - * Copyright (C) 2022-2023 Savoir-faire Linux Inc. + * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Olivier Dion <olivier.dion@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" diff --git a/src/transport/peer_channel.h b/src/transport/peer_channel.h index a2a910f..62dd76e 100644 --- a/src/transport/peer_channel.h +++ b/src/transport/peer_channel.h @@ -1,16 +1,14 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. - * Authors: Adrien Béraud <adrien.beraud@savoirfairelinux.com> - * Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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 diff --git a/src/upnp/protocol/igd.cpp b/src/upnp/protocol/igd.cpp index e816fb8..2b0b289 100644 --- a/src/upnp/protocol/igd.cpp +++ b/src/upnp/protocol/igd.cpp @@ -1,25 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com> - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "igd.h" //#include "logger.h" diff --git a/src/upnp/protocol/igd.h b/src/upnp/protocol/igd.h index 7e1d211..5ee5549 100644 --- a/src/upnp/protocol/igd.h +++ b/src/upnp/protocol/igd.h @@ -1,22 +1,18 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #pragma once diff --git a/src/upnp/protocol/mapping.cpp b/src/upnp/protocol/mapping.cpp index 9b285e9..bcd53b5 100644 --- a/src/upnp/protocol/mapping.cpp +++ b/src/upnp/protocol/mapping.cpp @@ -1,25 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com> - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "upnp/mapping.h" // #include "logger.h" #include "igd.h" diff --git a/src/upnp/protocol/natpmp/nat_pmp.cpp b/src/upnp/protocol/natpmp/nat_pmp.cpp index 8f04a19..b0aa78c 100644 --- a/src/upnp/protocol/natpmp/nat_pmp.cpp +++ b/src/upnp/protocol/natpmp/nat_pmp.cpp @@ -1,24 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "nat_pmp.h" #if HAVE_LIBNATPMP diff --git a/src/upnp/protocol/natpmp/nat_pmp.h b/src/upnp/protocol/natpmp/nat_pmp.h index 1ecf90e..b62b2f5 100644 --- a/src/upnp/protocol/natpmp/nat_pmp.h +++ b/src/upnp/protocol/natpmp/nat_pmp.h @@ -1,24 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #include "connectivity/upnp/protocol/upnp_protocol.h" diff --git a/src/upnp/protocol/natpmp/pmp_igd.cpp b/src/upnp/protocol/natpmp/pmp_igd.cpp index 41f25dd..e43c0c6 100644 --- a/src/upnp/protocol/natpmp/pmp_igd.cpp +++ b/src/upnp/protocol/natpmp/pmp_igd.cpp @@ -1,25 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com> - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "pmp_igd.h" #include <algorithm> diff --git a/src/upnp/protocol/natpmp/pmp_igd.h b/src/upnp/protocol/natpmp/pmp_igd.h index b627462..84a042b 100644 --- a/src/upnp/protocol/natpmp/pmp_igd.h +++ b/src/upnp/protocol/natpmp/pmp_igd.h @@ -1,23 +1,18 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com> - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ #pragma once diff --git a/src/upnp/protocol/pupnp/pupnp.cpp b/src/upnp/protocol/pupnp/pupnp.cpp index 4df8621..ad6ef9e 100644 --- a/src/upnp/protocol/pupnp/pupnp.cpp +++ b/src/upnp/protocol/pupnp/pupnp.cpp @@ -1,26 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com> - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Adrien Béraud <adrien.beraud@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "pupnp.h" #include <opendht/thread_pool.h> diff --git a/src/upnp/protocol/pupnp/pupnp.h b/src/upnp/protocol/pupnp/pupnp.h index 7c5939c..268846f 100644 --- a/src/upnp/protocol/pupnp/pupnp.h +++ b/src/upnp/protocol/pupnp/pupnp.h @@ -1,25 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com> - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #ifdef _WIN32 diff --git a/src/upnp/protocol/pupnp/upnp_igd.cpp b/src/upnp/protocol/pupnp/upnp_igd.cpp index 18be2d4..6e36a9b 100644 --- a/src/upnp/protocol/pupnp/upnp_igd.cpp +++ b/src/upnp/protocol/pupnp/upnp_igd.cpp @@ -1,25 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com> - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "upnp_igd.h" namespace dhtnet { diff --git a/src/upnp/protocol/pupnp/upnp_igd.h b/src/upnp/protocol/pupnp/upnp_igd.h index da6b400..077f071 100644 --- a/src/upnp/protocol/pupnp/upnp_igd.h +++ b/src/upnp/protocol/pupnp/upnp_igd.h @@ -1,25 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com> - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #include "connectivity/upnp/protocol/igd.h" diff --git a/src/upnp/protocol/upnp_protocol.h b/src/upnp/protocol/upnp_protocol.h index 9ab8339..d960d3e 100644 --- a/src/upnp/protocol/upnp_protocol.h +++ b/src/upnp/protocol/upnp_protocol.h @@ -1,24 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #pragma once #include "igd.h" diff --git a/src/upnp/upnp_context.cpp b/src/upnp/upnp_context.cpp index 5aa3f78..c4344cf 100644 --- a/src/upnp/upnp_context.cpp +++ b/src/upnp/upnp_context.cpp @@ -1,25 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com> - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "upnp/upnp_context.h" #include "protocol/upnp_protocol.h" diff --git a/src/upnp/upnp_control.cpp b/src/upnp/upnp_control.cpp index 2c7f07a..77db1ce 100644 --- a/src/upnp/upnp_control.cpp +++ b/src/upnp/upnp_control.cpp @@ -1,25 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com> - * Author: Eden Abitbol <eden.abitbol@savoirfairelinux.com> - * Author: Mohamed Chibani <mohamed.chibani@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include "upnp/upnp_control.h" #include "upnp/upnp_context.h" diff --git a/tests/certstore.cpp b/tests/certstore.cpp index 43967c6..01005e9 100644 --- a/tests/certstore.cpp +++ b/tests/certstore.cpp @@ -1,23 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * Author: florian Wiesweg <florian.wiesweg@campus.tu-berlin.de> - * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> diff --git a/tests/connectionManager.cpp b/tests/connectionManager.cpp index 90321f8..cc74dd8 100644 --- a/tests/connectionManager.cpp +++ b/tests/connectionManager.cpp @@ -1,21 +1,19 @@ /* - * Copyright (C) 2017-2023 Savoir-faire Linux Inc. - * Author: Sébastien Blin <sebastien.blin@savoirfairelinux.com> + * Copyright (C) 2004-2023 Savoir-faire Linux Inc. * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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 <https://www.gnu.org/licenses/>. */ - #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> diff --git a/tests/testFileutils.cpp b/tests/testFileutils.cpp index 34ca646..fa353a6 100644 --- a/tests/testFileutils.cpp +++ b/tests/testFileutils.cpp @@ -1,22 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. - * Author: Olivier Gregoire <olivier.gregoire@savoirfairelinux.com> * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> diff --git a/tests/testString_utils.cpp b/tests/testString_utils.cpp index 60c1363..b858c77 100644 --- a/tests/testString_utils.cpp +++ b/tests/testString_utils.cpp @@ -1,22 +1,19 @@ /* * Copyright (C) 2004-2023 Savoir-faire Linux Inc. - * Author: Olivier Gregoire <olivier.gregoire@savoirfairelinux.com> * - * This program is free software; you can redistribute it and/or modify + * 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 + * 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 + * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -- GitLab