Skip to content

Instantly share code, notes, and snippets.

@mengzhuo
Created April 8, 2014 10:18
Show Gist options
  • Save mengzhuo/10107170 to your computer and use it in GitHub Desktop.
Save mengzhuo/10107170 to your computer and use it in GitHub Desktop.
import asyncore
import socket
class EchoHandler(asyncore.dispatcher_with_send):
def handle_read(self):
data = self.recv(8192)
if data:
self.send(data)
class EchoServer(asyncore.dispatcher):
def __init__(self, host, port):
asyncore.dispatcher.__init__(self)
self.create_socket(socket.AF_INET, socket.SOCK_STREAM)
self.set_reuse_addr()
self.bind((host, port))
self.listen(5)
def handle_accept(self):
pair = self.accept()
if pair is not None:
sock, addr = pair
print 'Incoming connection from %s' % repr(addr)
handler = EchoHandler(sock)
server = EchoServer('localhost', 7000)
asyncore.loop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment