Searched refs:s4_req (Results 1 – 1 of 1) sorted by relevance
/freebsd/crypto/openssh/ |
H A D | channels.c | 1455 } s4_req, s4_rsp; in channel_decode_socks4() local 1461 len = sizeof(s4_req); in channel_decode_socks4() 1489 if ((r = sshbuf_get(input, &s4_req.version, 1)) != 0 || in channel_decode_socks4() 1490 (r = sshbuf_get(input, &s4_req.command, 1)) != 0 || in channel_decode_socks4() 1491 (r = sshbuf_get(input, &s4_req.dest_port, 2)) != 0 || in channel_decode_socks4() 1492 (r = sshbuf_get(input, &s4_req.dest_addr, 4)) != 0) { in channel_decode_socks4() 1511 host = inet_ntoa(s4_req.dest_addr); in channel_decode_socks4() 1534 c->host_port = ntohs(s4_req.dest_port); in channel_decode_socks4() 1537 c->self, c->path, c->host_port, s4_req.command); in channel_decode_socks4() 1539 if (s4_req.command != 1) { in channel_decode_socks4() [all …]
|