projects
/
irspy-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eaaaac5
)
Fix bug IR-363.
author
Mike Taylor
<mike@indexdata.com>
Fri, 23 Jan 2015 11:15:40 +0000
(11:15 +0000)
committer
Mike Taylor
<mike@indexdata.com>
Fri, 23 Jan 2015 11:15:40 +0000
(11:15 +0000)
Set the proxy as well as user/password when connecting to a target.
lib/ZOOM/IRSpy/Test/Ping.pm
patch
|
blob
|
history
diff --git
a/lib/ZOOM/IRSpy/Test/Ping.pm
b/lib/ZOOM/IRSpy/Test/Ping.pm
index
a6d8d55
..
ec6c441
100644
(file)
--- a/
lib/ZOOM/IRSpy/Test/Ping.pm
+++ b/
lib/ZOOM/IRSpy/Test/Ping.pm
@@
-24,8
+24,10
@@
sub start {
my $xc = $conn->record()->xpath_context();
my $user = $xc->find("e:serverInfo/e:authentication/e:user");
my $password = $xc->find("e:serverInfo/e:authentication/e:password");
+ my $proxy = $xc->find("e:serverInfo/e:authentication/e:proxy");
$options{"*user"} = $user if $user;
$options{"*password"} = $password if $password;
+ $options{"*proxy"} = $proxy if $proxy;
$conn->irspy_connect(undef, \%options,
ZOOM::Event::ZEND, \&connected,