Lines Matching refs:fwd
1238 struct Forward fwd;
1243 memset(&fwd, 0, sizeof(fwd));
1244 fwd.listen_host = packet_get_string(NULL);
1245 fwd.listen_port = (u_short)packet_get_int();
1247 fwd.listen_host, fwd.listen_port);
1252 (!want_reply && fwd.listen_port == 0)
1254 || (fwd.listen_port != 0 && fwd.listen_port < IPPORT_RESERVED &&
1262 success = channel_setup_remote_fwd_listener(&fwd,
1265 free(fwd.listen_host);
1271 struct Forward fwd;
1273 memset(&fwd, 0, sizeof(fwd));
1274 fwd.listen_host = packet_get_string(NULL);
1275 fwd.listen_port = (u_short)packet_get_int();
1277 fwd.listen_host, fwd.listen_port);
1279 success = channel_cancel_rport_listener(&fwd);
1280 free(fwd.listen_host);
1282 struct Forward fwd;
1284 memset(&fwd, 0, sizeof(fwd));
1285 fwd.listen_path = packet_get_string(NULL);
1287 fwd.listen_path);
1297 &fwd, NULL, &options.fwd_opts);
1299 free(fwd.listen_path);
1301 struct Forward fwd;
1303 memset(&fwd, 0, sizeof(fwd));
1304 fwd.listen_path = packet_get_string(NULL);
1306 fwd.listen_path);
1308 success = channel_cancel_rport_listener(&fwd);
1309 free(fwd.listen_path);