Created
September 27, 2015 09:22
-
-
Save ThisIsJeron/64fb7ed34ecd072c025c to your computer and use it in GitHub Desktop.
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
import socket | |
TCP_IP = '127.0.0.1' | |
TCP_PORT = 5005 | |
BUFFER_SIZE = 20 # Normally 1024, but we want fast response | |
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
s.bind((TCP_IP, TCP_PORT)) | |
s.listen(1) | |
conn, addr = s.accept() | |
print 'Connection address:', addr | |
while 1: | |
data = conn.recv(BUFFER_SIZE) | |
if not data: break | |
print "received data:", data | |
conn.send(data) # echo | |
conn.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment