From: Sergey Matveev Date: Fri, 8 Dec 2023 08:28:41 +0000 (+0300) Subject: Unify copyright comment format X-Git-Url: http://www.git.cypherpunks.ru/?a=commitdiff_plain;h=04876325c5703d813cfa74cecbaf6be4ed41422e9e69fc0dd18072009451ed10;p=udpobfs.git Unify copyright comment format --- diff --git a/cmd/init/main.go b/cmd/init/main.go index 3564dbf..42124c9 100644 --- a/cmd/init/main.go +++ b/cmd/init/main.go @@ -1,19 +1,17 @@ -/* -udpobfs -- simple point-to-point UDP obfuscation proxy -Copyright (C) 2023 Sergey Matveev - -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, version 3 of the License. - -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 . -*/ +// udpobfs -- simple point-to-point UDP obfuscation proxy +// Copyright (C) 2023-2024 Sergey Matveev +// +// 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, version 3 of the License. +// +// 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 . package main diff --git a/cmd/resp/main.go b/cmd/resp/main.go index 7545299..de9b3be 100644 --- a/cmd/resp/main.go +++ b/cmd/resp/main.go @@ -1,19 +1,17 @@ -/* -udpobfs -- simple point-to-point UDP obfuscation proxy -Copyright (C) 2023 Sergey Matveev - -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, version 3 of the License. - -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 . -*/ +// udpobfs -- simple point-to-point UDP obfuscation proxy +// Copyright (C) 2023-2024 Sergey Matveev +// +// 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, version 3 of the License. +// +// 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 . package main diff --git a/crypto.go b/crypto.go index 0905689..b397423 100644 --- a/crypto.go +++ b/crypto.go @@ -1,19 +1,17 @@ -/* -udpobfs -- simple point-to-point UDP obfuscation proxy -Copyright (C) 2023 Sergey Matveev - -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, version 3 of the License. - -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 . -*/ +// udpobfs -- simple point-to-point UDP obfuscation proxy +// Copyright (C) 2023-2024 Sergey Matveev +// +// 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, version 3 of the License. +// +// 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 . package udpobfs diff --git a/utils.go b/utils.go index 83e27ac..1a4727b 100644 --- a/utils.go +++ b/utils.go @@ -1,3 +1,18 @@ +// udpobfs -- simple point-to-point UDP obfuscation proxy +// Copyright (C) 2023-2024 Sergey Matveev +// +// 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, version 3 of the License. +// +// 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 . + package udpobfs import ( diff --git a/x509.go b/x509.go index c79db00..1d349f8 100644 --- a/x509.go +++ b/x509.go @@ -1,19 +1,17 @@ -/* -udpobfs -- simple point-to-point UDP obfuscation proxy -Copyright (C) 2023 Sergey Matveev - -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, version 3 of the License. - -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 . -*/ +// udpobfs -- simple point-to-point UDP obfuscation proxy +// Copyright (C) 2023-2024 Sergey Matveev +// +// 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, version 3 of the License. +// +// 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 . package udpobfs