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 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) |
Session stopped
- Press to exit tab
- Press R to restart session
- Press S to save terminal output to file
Network error: Connection refused
telnet.exe 127.0.0.1 5000
Trying 127.0.0.1...
telnet: Unable to connect to remote host: Connection refused
@QGB you are trying to connect to localhost
but the script was binding your host name. I changed it to bind to localhost
, so telnet localhost 5000
should work as expected.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fair enough. I'll update the description.