diff options
author | Brad Fitzpatrick <[email protected]> | 2022-10-16 18:56:27 -0700 |
---|---|---|
committer | Brad Fitzpatrick <[email protected]> | 2022-10-16 18:56:27 -0700 |
commit | 91f861402626c6ba93eaa57ee257109c4f07bd00 (patch) | |
tree | bd4f4f46ccbf9ced54d6facb3e549b8bb9d28452 /tcpproxy.go | |
parent | 74ca1dc5d55168d202044c415dcf2e08d80c3fdc (diff) |
remove old ACME tls-sni-01 stuff that LetsEncrypt removed March 2019
No point keeping it around. We can look at the git history to do
something similar later if we end up doing TLS-ALPN-01 in a similar
way.
Diffstat (limited to 'tcpproxy.go')
-rw-r--r-- | tcpproxy.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tcpproxy.go b/tcpproxy.go index 6d32137..5d178c6 100644 --- a/tcpproxy.go +++ b/tcpproxy.go @@ -93,9 +93,7 @@ func equals(want string) Matcher { // config contains the proxying state for one listener. type config struct { - routes []route - acmeTargets []Target // accumulates targets that should be probed for acme. - stopACME bool // if true, AddSNIRoute doesn't add targets to acmeTargets. + routes []route } // A route matches a connection to a target. |