-
-
Save nhasbun/396864b5654add4e8ecb290c9bb259ea to your computer and use it in GitHub Desktop.
Extremely simple Telnet server in Python.
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 | |
# Connect to the server with `telnet $HOSTNAME 5000`. | |
server = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
server.setblocking(False) | |
server.bind((socket.gethostname(), 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