Francois Gouget : testbot/TestAgent: Fix the non-tunneling case.

Alexandre Julliard julliard at winehq.org
Fri Mar 29 09:39:22 CDT 2019


Module: tools
Branch: master
Commit: 23d7731954e5780507b5e25e99b514fb6d04faf5
URL:    https://source.winehq.org/git/tools.git/?a=commit;h=23d7731954e5780507b5e25e99b514fb6d04faf5

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Fri Mar 29 15:18:29 2019 +0100

testbot/TestAgent: Fix the non-tunneling case.

The TestAgent server address is now stored in agenthost:agentport.

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 testbot/lib/WineTestBot/TestAgent.pm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testbot/lib/WineTestBot/TestAgent.pm b/testbot/lib/WineTestBot/TestAgent.pm
index ca8a81b..a0a5efe 100644
--- a/testbot/lib/WineTestBot/TestAgent.pm
+++ b/testbot/lib/WineTestBot/TestAgent.pm
@@ -900,8 +900,8 @@ sub _Connect($)
       else
       {
         $Step = "create_socket";
-        $self->{fd} = &$create_socket(PeerHost => $self->{host},
-                                      PeerPort => $self->{port},
+        $self->{fd} = &$create_socket(PeerHost => $self->{agenthost},
+                                      PeerPort => $self->{agentport},
                                       Type => SOCK_STREAM);
         if (!$self->{fd})
         {




More information about the wine-cvs mailing list