(meta metadata.ConnectionAuthPendingMetadata, pubKey auth2.PublicKey)
| 44 | } |
| 45 | |
| 46 | func (n *networkHandler) OnAuthPubKey(meta metadata.ConnectionAuthPendingMetadata, pubKey auth2.PublicKey) ( |
| 47 | response sshserver.AuthResponse, |
| 48 | metadata metadata.ConnectionAuthenticatedMetadata, |
| 49 | reason error, |
| 50 | ) { |
| 51 | return n.backend.OnAuthPubKey(meta, pubKey) |
| 52 | } |
| 53 | |
| 54 | func (n *networkHandler) OnAuthGSSAPI(meta metadata.ConnectionMetadata) auth.GSSAPIServer { |
| 55 | return n.backend.OnAuthGSSAPI(meta) |
nothing calls this directly
no test coverage detected