parseError results from a malformed SSH message.
(tag uint8)
| 384 | |
| 385 | // parseError results from a malformed SSH message. |
| 386 | func parseError(tag uint8) error { |
| 387 | return fmt.Errorf("ssh: parse error in message type %d", tag) |
| 388 | } |
| 389 | |
| 390 | func findCommon(what string, client []string, server []string, isClient bool) (string, error) { |
| 391 | for _, c := range client { |
no outgoing calls
no test coverage detected
searching dependent graphs…