summaryrefslogtreecommitdiff
path: root/tests/circuitpython-manual/socketpool/client/host-server.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/circuitpython-manual/socketpool/client/host-server.py')
-rw-r--r--tests/circuitpython-manual/socketpool/client/host-server.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/circuitpython-manual/socketpool/client/host-server.py b/tests/circuitpython-manual/socketpool/client/host-server.py
new file mode 100644
index 000000000..fd7ceb7f1
--- /dev/null
+++ b/tests/circuitpython-manual/socketpool/client/host-server.py
@@ -0,0 +1,27 @@
+#!/usr/bin/env python3
+import socket
+
+TIMEOUT = 10
+HOST = "192.168.10.179"
+PORT = 5000
+
+print("Create Socket")
+with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
+ s.settimeout(TIMEOUT)
+ s.bind((HOST, PORT))
+ s.listen()
+ print("Accepting connections")
+ while True:
+ try:
+ conn, addr = s.accept()
+ break
+ except BlockingIOError:
+ pass
+
+ with conn:
+ s.settimeout(TIMEOUT)
+ print('Connected by', addr)
+ data = conn.recv(128)
+ print("got: " + str(data))
+ conn.sendall(data)
+ print("sent: " + str(data))