From e8175e4a7c1668f4a97d623804671630e019e9bb Mon Sep 17 00:00:00 2001 From: Aaron Hurt Date: Fri, 7 Dec 2018 09:47:24 -0600 Subject: [PATCH] fix comment --- route/access_rules.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/route/access_rules.go b/route/access_rules.go index 19e9ffe84..63dd64a1c 100644 --- a/route/access_rules.go +++ b/route/access_rules.go @@ -68,7 +68,7 @@ func (t *Target) AccessDeniedHTTP(r *http.Request) bool { // AccessDeniedTCP checks rules on the target for TCP proxy routes. func (t *Target) AccessDeniedTCP(c net.Conn) bool { - // Calling RemoteAddr on a proxy-protocol enabled connection. + // Calling RemoteAddr on a proxy-protocol enabled connection may block. // Therefore we explicitly check and bail out early if there are no // rules defined for the target. // See https://github.com/fabiolb/fabio/issues/524 for background.