Home
last modified time | relevance | path

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

/titanic_41/usr/src/cmd/ssh/libssh/common/
H A Dchannels.c905 } s4_req, s4_rsp; in channel_decode_socks4() local
910 len = sizeof(s4_req); in channel_decode_socks4()
928 buffer_get(&c->input, (char *)&s4_req.version, 1); in channel_decode_socks4()
929 buffer_get(&c->input, (char *)&s4_req.command, 1); in channel_decode_socks4()
930 buffer_get(&c->input, (char *)&s4_req.dest_port, 2); in channel_decode_socks4()
931 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4); in channel_decode_socks4()
943 host = inet_ntoa(s4_req.dest_addr); in channel_decode_socks4()
945 c->host_port = ntohs(s4_req.dest_port); in channel_decode_socks4()
948 c->self, host, c->host_port, s4_req.command); in channel_decode_socks4()
950 if (s4_req.command != 1) { in channel_decode_socks4()
[all …]