|
From: Jonathan L. <le...@us...> - 2006-12-08 16:52:17
|
Update of /cvsroot/pyxida/Pyxida/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12784/bin Modified Files: proxy.pl query.pl Log Message: progress with proxy coords Index: proxy.pl =================================================================== RCS file: /cvsroot/pyxida/Pyxida/bin/proxy.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** proxy.pl 6 Dec 2006 22:03:54 -0000 1.3 --- proxy.pl 8 Dec 2006 16:52:08 -0000 1.4 *************** *** 40,47 **** } elsif (defined($para{'d'})) { my $res = $server->call("pyxida.destroyProxyCoord",$para{'d'}); ! &outputBoolean($res); } elsif (defined($para{'r'})) { my $res = $server->call("pyxida.renewProxyCoord",$para{'r'},$lease); ! &outputBoolean($res); } else { die ("Missing arguments\n$usage"); --- 40,49 ---- } elsif (defined($para{'d'})) { my $res = $server->call("pyxida.destroyProxyCoord",$para{'d'}); ! print Dumper($res); ! #&outputBoolean($res); } elsif (defined($para{'r'})) { my $res = $server->call("pyxida.renewProxyCoord",$para{'r'},$lease); ! print Dumper($res); ! #&outputBoolean($res); } else { die ("Missing arguments\n$usage"); Index: query.pl =================================================================== RCS file: /cvsroot/pyxida/Pyxida/bin/query.pl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** query.pl 5 Dec 2006 15:47:56 -0000 1.6 --- query.pl 8 Dec 2006 16:52:08 -0000 1.7 *************** *** 13,16 **** --- 13,17 ---- $usage .= " -l: get local coordinate of node running at url\n"; $usage .= " -r remote-node: get remote overlay node coordinate\n"; + $usage .= " -p proxy-node: get proxy coord that is stored on contacted node\n"; $usage .= " -a nodeA -b nodeB: estimate latency btw overlay nodes A and B\n"; |