From 19c41849e26b28c6d02065b84b99f7fed51e0e81 Mon Sep 17 00:00:00 2001 From: Przemek Wirkus Date: Thu, 13 Mar 2014 16:02:09 +0000 Subject: [PATCH] Updated server IP address (According to server test script) --- workspace_tools/host_tests/example/TCPEchoClient.py | 4 ++-- workspace_tools/host_tests/example/UDPEchoClient.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/workspace_tools/host_tests/example/TCPEchoClient.py b/workspace_tools/host_tests/example/TCPEchoClient.py index 964e3cc2d2..dfa9bfdae7 100644 --- a/workspace_tools/host_tests/example/TCPEchoClient.py +++ b/workspace_tools/host_tests/example/TCPEchoClient.py @@ -16,10 +16,10 @@ limitations under the License. """ import socket -ECHO_SERVER_ADDRESS = "10.2.200.41" +ECHO_SERVER_ADDRESS = "10.2.202.45" ECHO_PORT = 7 -s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) +s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((ECHO_SERVER_ADDRESS, ECHO_PORT)) s.sendall('Hello, world') diff --git a/workspace_tools/host_tests/example/UDPEchoClient.py b/workspace_tools/host_tests/example/UDPEchoClient.py index ce256c26d6..6a6cf8c902 100644 --- a/workspace_tools/host_tests/example/UDPEchoClient.py +++ b/workspace_tools/host_tests/example/UDPEchoClient.py @@ -15,8 +15,8 @@ See the License for the specific language governing permissions and limitations under the License. """ import socket - -ECHO_SERVER_ADDRESS = '10.2.200.41' + +ECHO_SERVER_ADDRESS = '10.2.202.45' ECHO_PORT = 7 sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)