PayloadAuthPubKeyBackendError is a payload for a message indicating that there was a backend error while authenticating with public key.
| 77 | // PayloadAuthPubKeyBackendError is a payload for a message indicating that there was a backend error while |
| 78 | // authenticating with public key. |
| 79 | type PayloadAuthPubKeyBackendError struct { |
| 80 | Username string `json:"username" yaml:"username"` |
| 81 | Key string `json:"key" yaml:"key"` |
| 82 | Reason string `json:"reason" yaml:"reason"` |
| 83 | } |
| 84 | |
| 85 | // Equals compares two PayloadAuthPubKeyBackendError payloads. |
| 86 | func (p PayloadAuthPubKeyBackendError) Equals(other Payload) bool { |
nothing calls this directly
no outgoing calls
no test coverage detected