summaryrefslogtreecommitdiff
path: root/tcpproxy.go
diff options
context:
space:
mode:
authorBrad Fitzpatrick <[email protected]>2022-10-16 18:56:27 -0700
committerBrad Fitzpatrick <[email protected]>2022-10-16 18:56:27 -0700
commit91f861402626c6ba93eaa57ee257109c4f07bd00 (patch)
treebd4f4f46ccbf9ced54d6facb3e549b8bb9d28452 /tcpproxy.go
parent74ca1dc5d55168d202044c415dcf2e08d80c3fdc (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.go4
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.