From 4066e7d1d03a722981b6f4bbd62edfda78f09ec0 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Tue, 10 Oct 2023 14:27:03 -0700 Subject: [PATCH] server: Clarify license --- client/COPYING => COPYING | 0 server/src/main.rs | 16 ++++++++++++++++ 2 files changed, 16 insertions(+) rename client/COPYING => COPYING (100%) diff --git a/client/COPYING b/COPYING similarity index 100% rename from client/COPYING rename to COPYING diff --git a/server/src/main.rs b/server/src/main.rs index 5a6315f..0d4377a 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -1,3 +1,19 @@ +// tattlekey: A one-key UDP keyboard +// Copyright (C) 2023 Scott Worley +// +// 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 . + use std::net::UdpSocket; const MESSAGE_SIZE: usize = 12; -- 2.44.1