Searched refs:s4_req (Results 1 – 1 of 1) sorted by relevance
| /dragonfly/crypto/openssh/ |
| HD | channels.c | 1453 } s4_req, s4_rsp; in channel_decode_socks4() local 1459 len = sizeof(s4_req); in channel_decode_socks4() 1487 if ((r = sshbuf_get(input, &s4_req.version, 1)) != 0 || in channel_decode_socks4() 1488 (r = sshbuf_get(input, &s4_req.command, 1)) != 0 || in channel_decode_socks4() 1489 (r = sshbuf_get(input, &s4_req.dest_port, 2)) != 0 || in channel_decode_socks4() 1490 (r = sshbuf_get(input, &s4_req.dest_addr, 4)) != 0) { in channel_decode_socks4() 1509 host = inet_ntoa(s4_req.dest_addr); in channel_decode_socks4() 1532 c->host_port = ntohs(s4_req.dest_port); in channel_decode_socks4() 1535 c->self, c->path, c->host_port, s4_req.command); in channel_decode_socks4() 1537 if (s4_req.command != 1) { in channel_decode_socks4() [all …]
|