1
from twisted.internet.protocol import Protocol,Factory
from twisted.internet import reactor

class ChatServer(Protocol):
def connectionMade(self):
    print "A Client Has Connected"
    self.factory.clients.append(self)
    print"clients are ",self.factory.clients
    self.transport.write('Hello,Welcome to the telnet chat to sign in type aim:YOUR NAME HERE to send a messsage type msg:YOURMESSAGE '+'\n')

def connectionLost(self,reason):
    self.factory.clients.remove(self)
    self.transport.write('Somebody was disconnected from the server')

def dataReceived(self,data):
    #print "data is",data
    a = data.split(':')
    if len(a) > 1:
        command = a[0]
    content = a[1]

    msg=""
    if command =="iam":
    self.name + "has joined"

    elif command == "msg":
    ma=sg = self.name + ":" +content

    print msg
    for c in self.factory.clients:
        c.message(msg)
def message(self,message):
    self.transport.write(message + '\n')

factory = Factory()
factory.protocol = ChatServer
factory.clients = []
reactor.listenTCP(80,factory)
print "Iphone Chat server started"
reactor.run()

上面的代码运行成功...但是当我将客户端(通过键入 telnet localhost 80)连接到此聊天服务器并尝试写入消息时,连接丢失并出现以下错误:

Iphone Chat server started
A Client Has Connected
clients are [<__main__.ChatServer instance at 0x024AC0A8>]
Unhandled Error
Traceback (most recent call last):
File "C:\Python27\lib\site-packages\twisted\python\log.py", line 84, in callWithLogger
return callWithContext({"system": lp}, func, *args, **kw)
File "C:\Python27\lib\site-packages\twisted\python\log.py", line 69, in callWithContext
return context.call({ILogContext: newCtx}, func, *args, **kw)
File "C:\Python27\lib\site-packages\twisted\python\context.py", line 118, in callWithContext
return self.currentContext().callWithContext(ctx, func, *args, **kw)
File "C:\Python27\lib\site-packages\twisted\python\context.py", line 81, in callWithContext
return func(*args,**kw)
--- ---
File "C:\Python27\lib\site-packages\twisted\internet\selectreactor.py", line 150, in _doReadOrWrite
why = getattr(selectable, method)()
File "C:\Python27\lib\site-packages\twisted\internet\tcp.py", line 199, in doRead
rval = self.protocol.dataReceived(data)
File "D:\chatserverultimate.py", line 21, in dataReceived
content = a[1]
exceptions.IndexError: list index out of range

我哪里错了?

4

1 回答 1

2

您错误地缩进了content = a[1]行。您需要更多空间!:)

于 2013-06-30T04:00:50.830 回答