Home
last modified time | relevance | path

Searched refs:s4_req (Results 1 – 1 of 1) sorted by relevance

/freebsd-12-stable/crypto/openssh/
Dchannels.c1284 } s4_req, s4_rsp; in channel_decode_socks4() local
1290 len = sizeof(s4_req); in channel_decode_socks4()
1318 if ((r = sshbuf_get(input, &s4_req.version, 1)) != 0 || in channel_decode_socks4()
1319 (r = sshbuf_get(input, &s4_req.command, 1)) != 0 || in channel_decode_socks4()
1320 (r = sshbuf_get(input, &s4_req.dest_port, 2)) != 0 || in channel_decode_socks4()
1321 (r = sshbuf_get(input, &s4_req.dest_addr, 4)) != 0) { in channel_decode_socks4()
1340 host = inet_ntoa(s4_req.dest_addr); in channel_decode_socks4()
1363 c->host_port = ntohs(s4_req.dest_port); in channel_decode_socks4()
1366 c->self, c->path, c->host_port, s4_req.command); in channel_decode_socks4()
1368 if (s4_req.command != 1) { in channel_decode_socks4()
[all …]