Displaying 1 result from an estimated 1 matches for "remote_pid".
Did you mean:
remote_cid
2003 Jul 03
0
[PATCH] Speed up dynamic-forward regression test
...28 Jun 2003 02:42:09 -0000 1.1
+++ regress/dynamic-forward.sh 3 Jul 2003 04:46:53 -0000
@@ -19,19 +19,17 @@
start_sshd
for p in 1 2; do
+ trace "start dynamic forwarding, fork to background"
+ ${SSH} -$p -F $OBJ/ssh_config -f -D $FWDPORT -q somehost \
+ "echo \$\$ >$OBJ/remote_pid; exec sleep 10"
for s in 4; do
for h in 127.0.0.1 localhost; do
trace "testing ssh protocol $p socks version $s host $h"
- trace "start dynamic forwarding, fork to background"
- ${SSH} -$p -F $OBJ/ssh_config -f -D $FWDPORT somehost sleep 10
-
- trace "transfe...