(requestID uint64, sessionChannel SessionChannelHandler, payload interface{})
| 1240 | } |
| 1241 | |
| 1242 | func (s *serverImpl) onSignal(requestID uint64, sessionChannel SessionChannelHandler, payload interface{}) error { |
| 1243 | return sessionChannel.OnSignal( |
| 1244 | requestID, |
| 1245 | payload.(ssh2.SignalRequestPayload).Signal, |
| 1246 | ) |
| 1247 | } |
| 1248 | |
| 1249 | func (s *serverImpl) onForwardTCPIP(authenticatedMetadata metadata.ConnectionAuthenticatedMetadata, requestID uint64, payload interface{}, connection SSHConnectionHandler) error { |
| 1250 | fwdAddress := payload.(ssh2.ForwardTCPIPRequestPayload).Address |
no test coverage detected