3

私がTwistedで作成したこのサーバーは、クライアントから文字列を受信し、接続されている他のすべてのクライアントに送信します。しかし、送信者が送信したいクライアントだけに文字列を送信する方法はありますか?もしそうなら、どうすればコードでそれを行うことができますか?これは私がこれまでに行ったことです(注:私はPythonの完全な初心者です。iOSアプリ用のサーバーを構築する必要があるだけなので、質問がばかげている場合は申し訳ありません):

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


class IphoneChat(Protocol):
    def connectionMade(self):
        #self.transport.write("""connected""")
        self.factory.clients.append(self)
        print "clients are ", self.factory.clients

    def connectionLost(self, reason):
        self.factory.clients.remove(self)

    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 = content
                msg = "iam" + self.name + " has joined"

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

            elif command == "img":
                msg = command + ":" + content + ":" + command

            elif command == "img2":
                msg = content

            elif command == "img3":
                msg = 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 = IphoneChat
factory.clients = []

reactor.listenTCP(53080, factory)
print "Iphone Chat server started"
reactor.run()

助けてくれてありがとう

4

1 に答える 1

2
self.factory.clients[24].transport.write("You are client 24!")

私はうまくいくはずだと思います

于 2013-01-02T21:41:10.617 に答える