Home
last modified time | relevance | path

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

/external/openssh/
Dchannels.c1054 } s4_req, s4_rsp; in channel_decode_socks4() local
1059 len = sizeof(s4_req); in channel_decode_socks4()
1087 buffer_get(&c->input, (char *)&s4_req.version, 1); in channel_decode_socks4()
1088 buffer_get(&c->input, (char *)&s4_req.command, 1); in channel_decode_socks4()
1089 buffer_get(&c->input, (char *)&s4_req.dest_port, 2); in channel_decode_socks4()
1090 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4); in channel_decode_socks4()
1108 host = inet_ntoa(s4_req.dest_addr); in channel_decode_socks4()
1128 c->host_port = ntohs(s4_req.dest_port); in channel_decode_socks4()
1131 c->self, c->path, c->host_port, s4_req.command); in channel_decode_socks4()
1133 if (s4_req.command != 1) { in channel_decode_socks4()
[all …]