/ Published in: Python
                    
                                        
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
import socket
import sys
host = ''
port = 50000
backlog = 5
size = 1024
s = None
try:
s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.bind((host,port))
s.listen(backlog)
except socket.error,(value,message):
if s:
s.close()
print "Could not open socket: " + message
sys.exit(1)
while 1:
client,address = s.accept()
data = client.recv(size)
if data:
print(data)
client.send(data)
if (data=="quit"):
sys.exit(0)
client.close()
Comments
 Subscribe to comments
                    Subscribe to comments
                
                