Chinaunix首页 | 论坛 | 博客
  • 博客访问: 5096465
  • 博文数量: 921
  • 博客积分: 16037
  • 博客等级: 上将
  • 技术积分: 8469
  • 用 户 组: 普通用户
  • 注册时间: 2006-04-05 02:08
文章分类

全部博文(921)

文章存档

2020年(1)

2019年(3)

2018年(3)

2017年(6)

2016年(47)

2015年(72)

2014年(25)

2013年(72)

2012年(125)

2011年(182)

2010年(42)

2009年(14)

2008年(85)

2007年(89)

2006年(155)

分类: Python/Ruby

2011-12-08 13:17:21

python 服务端:
  1. #!/usr/local/python25/bin/python
  2. #-*- encoding:gb2312 -*-

  3. """
  4. Socket example server using Twisted. chat server test

  5. @author: U{Royce}

  6. @time:2008/6/15
  7. """

  8. from twisted.internet import protocol
  9. from twisted.protocols import basic
  10. from twisted.python import log
  11. from twisted.internet import reactor
  12. import sys
  13. import pyamf

  14. class ConfigServer(basic.LineReceiver):
  15. encoding = pyamf.AMF0

  16. def __init__(self):
  17.        self.encoder = pyamf.get_encoder(self.encoding)
  18.        self.stream = self.encoder.stream

  19. def dataReceived(self, data):
  20.        print "data : " + data
  21.        if data == 'quit':
  22.          self.sendLine("Good bye!")
  23.          self.transport.loseConnection()
  24.        else:
  25.          self.broadcast(data)

  26. def broadcast(self, msg):
  27.        for client in self.factory.clients:
  28.        client.sendLine(msg);

  29. def connectionMade(self):
  30.        self.factory.clients.append(self)
  31.        print "Connect from %s.." % self.transport.getHost()
  32.        self.sendLine("Welcome...%s" % self.transport.getHost())

  33. def connectionLost(self, reason):
  34.        self.broadcast("Disconnect...")
  35.        self.factory.clients.remove(self)
  36.        pass

  37. class ConfigServerFactory(protocol.ServerFactory):
  38. protocol = ConfigServer
  39. clients = []

  40. def main():
  41. log.startLogging(sys.stdout)
  42. reactor.listenTCP(8080,ConfigServerFactory())
  43. reactor.run()

  44. if __name__ == '__main__':
  45. main()
阅读(1187) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~