From 89e4632f1beec271bcbfd72dab42b031610d4949 Mon Sep 17 00:00:00 2001 From: Zafer Balkan Date: Tue, 3 Feb 2026 15:38:41 +0200 Subject: [PATCH 1/2] Fixed typo in the TransparentProxyServer ctor --- TechnitiumLibrary.Net/Proxy/TransparentProxyServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TechnitiumLibrary.Net/Proxy/TransparentProxyServer.cs b/TechnitiumLibrary.Net/Proxy/TransparentProxyServer.cs index 8e44dcec..41cea14b 100644 --- a/TechnitiumLibrary.Net/Proxy/TransparentProxyServer.cs +++ b/TechnitiumLibrary.Net/Proxy/TransparentProxyServer.cs @@ -63,7 +63,7 @@ public TransparentProxyServer(IProxyServerConnectionManager connectionManager = public TransparentProxyServer(IPEndPoint localEP, IProxyServerConnectionManager connectionManager = null, TransparentProxyServerMethod method = TransparentProxyServerMethod.DNAT, int backlog = 10) { - if (_method != TransparentProxyServerMethod.Tunnel) + if (method != TransparentProxyServerMethod.Tunnel) { if (Environment.OSVersion.Platform != PlatformID.Unix) throw new NotSupportedException("Only Unix/Linux is supported."); From 4577be1aa31c01a40be520c82619115797670884 Mon Sep 17 00:00:00 2001 From: Zafer Balkan Date: Tue, 3 Feb 2026 17:26:18 +0200 Subject: [PATCH 2/2] Added copyright --- TechnitiumLibrary.Net/Proxy/TransparentProxyServer.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TechnitiumLibrary.Net/Proxy/TransparentProxyServer.cs b/TechnitiumLibrary.Net/Proxy/TransparentProxyServer.cs index 41cea14b..7e007f94 100644 --- a/TechnitiumLibrary.Net/Proxy/TransparentProxyServer.cs +++ b/TechnitiumLibrary.Net/Proxy/TransparentProxyServer.cs @@ -1,6 +1,7 @@ /* Technitium Library Copyright (C) 2024 Shreyas Zare (shreyas@technitium.com) +Copyright (C) 2026 Zafer Balkan (zafer@zaferbalkan.com) 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