cmd/init/main.go | 30 ++++++++++++++---------------- cmd/resp/main.go | 30 ++++++++++++++---------------- crypto.go | 30 ++++++++++++++---------------- utils.go | 15 +++++++++++++++ x509.go | 30 ++++++++++++++---------------- diff --git a/cmd/init/main.go b/cmd/init/main.go index 3564dbf0ed737d1a4c718e6774742fddbf2ffce3c45b5fbf264fea4c00584b48..42124c9044c4a17903d0a742e69abfc74fd5677c58e7d92ebddd6a32b4e8deb0 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 75452990263b7392253f3389a32572e538d2b9797c00f5e6297f431e4e9bcce7..de9b3be1330fa498caa5dda35c9847bf6a2f145e4ec6a8b9a7c7ac913aa985b4 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 0905689304a23a755622731dbceaed10a820faa3c4cece089bc2e3a82333f706..b397423a935a94b16d44a53d92bcf8b1ebfa9d16ccb8bd086a0a0fcf5f4cf24b 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 83e27acfce15159c93a1effc76f7bd7f755c0c6158f8bc196e857f61ca70db89..1a4727be1f25a01489e32934013feca4c2785f620b81f8501d59890b3cfef30b 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 c79db00d40fdfa35385e21d0943e9a43fcbbf87d4f4b38876a3b98e23537ebc5..1d349f828023f3802959276e221aa43d5a7f608bc5349efa29b597ab25526165 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