Searched refs:rfwd (Results 1 – 2 of 2) sorted by relevance
/external/openssh/ |
D | ssh.c | 1016 Forward *rfwd = (Forward *)ctxt; in ssh_confirm_remote_forward() local 1021 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port); in ssh_confirm_remote_forward() 1022 if (type == SSH2_MSG_REQUEST_SUCCESS && rfwd->listen_port == 0) { in ssh_confirm_remote_forward() 1023 rfwd->allocated_port = packet_get_int(); in ssh_confirm_remote_forward() 1025 rfwd->allocated_port, in ssh_confirm_remote_forward() 1026 rfwd->connect_host, rfwd->connect_port); in ssh_confirm_remote_forward() 1032 "listen port %d", rfwd->listen_port); in ssh_confirm_remote_forward() 1035 "listen port %d", rfwd->listen_port); in ssh_confirm_remote_forward()
|
D | mux.c | 577 Forward *rfwd; in mux_confirm_remote_forward() local 591 rfwd = &options.remote_forwards[fctx->fid]; in mux_confirm_remote_forward() 594 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port); in mux_confirm_remote_forward() 596 if (rfwd->listen_port == 0) { in mux_confirm_remote_forward() 597 rfwd->allocated_port = packet_get_int(); in mux_confirm_remote_forward() 599 " to %s:%d", rfwd->allocated_port, in mux_confirm_remote_forward() 600 rfwd->connect_host, rfwd->connect_port); in mux_confirm_remote_forward() 603 buffer_put_int(&out, rfwd->allocated_port); in mux_confirm_remote_forward() 611 "listen port %d", rfwd->listen_port); in mux_confirm_remote_forward()
|