Last active
April 19, 2023 20:53
-
-
Save pedrominicz/b699dec01b4afd38b8aba83f3089e175 to your computer and use it in GitHub Desktop.
Extremely simple "distributed echo server" server in Python (Telnet clients should be able to connect to it).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import socket | |
# Read "distributed echo server" as "(distributed echo) server". The "server" | |
# is not "distributed" but the echos are "distributed" to every connected | |
# client. | |
# Connect to the server with `telnet localhost 5000`. | |
server = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
server.setblocking(False) | |
server.bind(('localhost', 5000)) | |
server.listen(5) | |
connections = [] | |
while True: | |
try: | |
connection, address = server.accept() | |
connection.setblocking(False) | |
connections.append(connection) | |
except BlockingIOError: | |
pass | |
for connection in connections: | |
try: | |
message = connection.recv(4096) | |
except BlockingIOError: | |
continue | |
for connection in connections: | |
connection.send(message) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@QGB you are trying to connect to
localhost
but the script was binding your host name. I changed it to bind tolocalhost
, sotelnet localhost 5000
should work as expected.