Commit 7e8a5903 authored by Stanislav Fomichev's avatar Stanislav Fomichev Committed by Daniel Borkmann

selftests/bpf: use localhost in tcp_{server,client}.py

Bind and connect to localhost. There is no reason for this test to
use non-localhost interface. This lets us run this test in a network
namespace.
Signed-off-by: default avatarStanislav Fomichev <sdf@google.com>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
parent ecc15f11
...@@ -30,12 +30,11 @@ def send(sock, s): ...@@ -30,12 +30,11 @@ def send(sock, s):
serverPort = int(sys.argv[1]) serverPort = int(sys.argv[1])
HostName = socket.gethostname()
# create active socket # create active socket
sock = socket.socket(socket.AF_INET6, socket.SOCK_STREAM) sock = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
try: try:
sock.connect((HostName, serverPort)) sock.connect(('localhost', serverPort))
except socket.error as e: except socket.error as e:
sys.exit(1) sys.exit(1)
......
...@@ -35,13 +35,10 @@ MAX_PORTS = 2 ...@@ -35,13 +35,10 @@ MAX_PORTS = 2
serverPort = SERVER_PORT serverPort = SERVER_PORT
serverSocket = None serverSocket = None
HostName = socket.gethostname()
# create passive socket # create passive socket
serverSocket = socket.socket(socket.AF_INET6, socket.SOCK_STREAM) serverSocket = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
host = socket.gethostname()
try: serverSocket.bind((host, 0)) try: serverSocket.bind(('localhost', 0))
except socket.error as msg: except socket.error as msg:
print('bind fails: ' + str(msg)) print('bind fails: ' + str(msg))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment