From d6f1843ef3ef8997bc926869cc957f229b4e6c7d Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Tue, 26 Nov 2024 12:28:04 +0100 Subject: [PATCH] add licensing file to be more explicit w/ licenses --- LICENSING.md | 22 ++++++++++++++++++++++ src/http/Client.zig | 18 ------------------ 2 files changed, 22 insertions(+), 18 deletions(-) create mode 100644 LICENSING.md diff --git a/LICENSING.md b/LICENSING.md new file mode 100644 index 00000000..d54e4d79 --- /dev/null +++ b/LICENSING.md @@ -0,0 +1,22 @@ +# Licensing + +License names used in this document are as per [SPDX License +List](https://spdx.org/licenses/). + +The default license for this project is [AGPL-3.0-only](LICENSE). + +## MIT + +The following files are licensed under MIT: + +``` +src/http/Client.zig +``` + +The following directories and their subdirectories are licensed under their +original upstream licenses: + +``` +vendor/ +tests/wpt/ +``` diff --git a/src/http/Client.zig b/src/http/Client.zig index eeac1663..077a628f 100644 --- a/src/http/Client.zig +++ b/src/http/Client.zig @@ -1,21 +1,3 @@ -// Copyright (C) 2023-2024 Lightpanda (Selecy SAS) -// -// Francis Bouvier -// Pierre Tachoire -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero 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 Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - //! HTTP(S) Client implementation. //! //! Connections are opened in a thread-safe manner, but individual Requests are not.