Created
February 16, 2014 14:00
-
-
Save helayzhang/9034628 to your computer and use it in GitHub Desktop.
Simple Echo server writen by Python .
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 python | |
""" | |
A simple echo server | |
""" | |
import socket | |
host = '' | |
port = 8888 | |
backlog = 5 | |
size = 1024 | |
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
s.bind((host,port)) | |
s.listen(backlog) | |
while 1: | |
client, address = s.accept() | |
while 1: | |
data = client.recv(size) | |
if data: | |
client.send(data) | |
client.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment