NewNoAuthAuthenticator creates a authless Authenticator
()
| 15 | |
| 16 | // NewNoAuthAuthenticator creates a authless Authenticator |
| 17 | func NewNoAuthAuthenticator() Authenticator { |
| 18 | return &NoAuthAuthenticator{} |
| 19 | } |
| 20 | |
| 21 | // Handle writes back the version and NoAuth |
| 22 | func (a *NoAuthAuthenticator) Handle(reader io.Reader, writer io.Writer) error { |