(ctx context.Context, w http.ResponseWriter, r *http.Request)
| 47 | } |
| 48 | |
| 49 | func (a *RejectHTTPAuth) Validate(ctx context.Context, w http.ResponseWriter, r *http.Request) (string, bool) { |
| 50 | r = r.Clone(ctx) |
| 51 | a.proxy.ServeHTTP(w, r) |
| 52 | return "", false |
| 53 | } |
| 54 | |
| 55 | func (_ *RejectHTTPAuth) Valid(_, _, _ string) bool { |
| 56 | return false |