Home
last modified time | relevance | path

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

/external/openssh/
Dchannels.c1253 } s4_req, s4_rsp; in channel_decode_socks4() local
1259 len = sizeof(s4_req); in channel_decode_socks4()
1287 if ((r = sshbuf_get(input, &s4_req.version, 1)) != 0 || in channel_decode_socks4()
1288 (r = sshbuf_get(input, &s4_req.command, 1)) != 0 || in channel_decode_socks4()
1289 (r = sshbuf_get(input, &s4_req.dest_port, 2)) != 0 || in channel_decode_socks4()
1290 (r = sshbuf_get(input, &s4_req.dest_addr, 4)) != 0) { in channel_decode_socks4()
1312 host = inet_ntoa(s4_req.dest_addr); in channel_decode_socks4()
1337 c->host_port = ntohs(s4_req.dest_port); in channel_decode_socks4()
1340 c->self, c->path, c->host_port, s4_req.command); in channel_decode_socks4()
1342 if (s4_req.command != 1) { in channel_decode_socks4()
[all …]