| 104 | } |
| 105 | |
| 106 | type networkConnectionHandler struct { |
| 107 | backend sshserver.NetworkConnectionHandler |
| 108 | ip net.IP |
| 109 | connectionID string |
| 110 | behavior Behavior |
| 111 | authContext auth.AuthenticationContext |
| 112 | passwordAuthenticator auth.PasswordAuthenticator |
| 113 | publicKeyAuthenticator auth.PublicKeyAuthenticator |
| 114 | gssapiAuthenticator auth.GSSAPIAuthenticator |
| 115 | keyboardInteractiveAuthenticator auth.KeyboardInteractiveAuthenticator |
| 116 | authorizationProvider auth.AuthzProvider |
| 117 | } |
| 118 | |
| 119 | func (h *networkConnectionHandler) OnShutdown(shutdownContext context.Context) { |
| 120 | h.backend.OnShutdown(shutdownContext) |
nothing calls this directly
no outgoing calls
no test coverage detected