加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

扭曲的Python:UDP广播(简单的回声服务器)

发布时间:2020-12-16 21:31:18 所属栏目:Python 来源:网络整理
导读:我正在尝试调整 Python Twisted – UDP examples以使用UDP广播.我可以从客户端发送消息并在服务器上接收它,但是,它不会发回消息. 客户: from twisted.internet.protocol import DatagramProtocolfrom twisted.internet import reactorfrom socket import SO
我正在尝试调整 Python Twisted – UDP examples以使用UDP广播.我可以从客户端发送消息并在服务器上接收它,但是,它不会发回消息.

客户:

from twisted.internet.protocol import DatagramProtocol
from twisted.internet import reactor

from socket import SOL_SOCKET,SO_BROADCAST

class EchoClientDatagramProtocol(DatagramProtocol):
    strings = [
        "Hello,world!","What a fine day it is.","Bye-bye!"
    ]

    def startProtocol(self):
        self.transport.socket.setsockopt(SOL_SOCKET,SO_BROADCAST,True)
        self.transport.connect("255.255.255.255",8000)
        self.sendDatagram()

    def sendDatagram(self):
        if len(self.strings):
            datagram = self.strings.pop(0)
            self.transport.write(datagram)
        else:
            reactor.stop()

    def datagramReceived(self,datagram,host):
        print 'Datagram received: ',repr(datagram)
        self.sendDatagram()

def main():
    protocol = EchoClientDatagramProtocol()
    #0 means any port
    t = reactor.listenUDP(0,protocol)
    reactor.run()

if __name__ == '__main__':
   main()

服务器:

from twisted.internet.protocol import DatagramProtocol
from twisted.internet import reactor

class EchoUDP(DatagramProtocol):
    def datagramReceived(self,address):
        print "Received from address: " + str(address)
        print str(datagram)
        self.transport.write(datagram,address)
        print "Finished sending reply."

print "Starting server."
reactor.listenUDP(8000,EchoUDP())
reactor.run()

控制台输出:

Server:

Starting server.
Received from address ('192.168.1.137',53737)
Hello,world!
Finished sending reply.

Client:

no output.

解决方法

transport.connect创建一个 connected UDP socket

A connected UDP socket is slightly different from a standard one – it can only send and receive datagrams to/from a single address,but this does not in any way imply a connection. Datagrams may still arrive in any order,and the port on the other side may have no one listening. The benefit of the connected UDP socket is that it it may provide notification of undelivered packages. This depends on many factors,almost all of which are out of the control of the application,but it still presents certain benefits which occasionally make it useful.

我怀疑服务器的响应没有被客户端捕获,因为它正在侦听来自广播地址的响应,而不是服务器的特定地址.

相反,只需使用self.transport.write(数据,(主机,端口))形式的写入而不首先启动连接 – 这将允许客户端从任何地址接收数据包.

from twisted.internet.protocol import DatagramProtocol
from twisted.internet import reactor

from socket import SOL_SOCKET,True)
        #self.transport.connect("255.255.255.255",8000) <- not needed
        self.sendDatagram()

    def sendDatagram(self):
        if len(self.strings):
            datagram = self.strings.pop(0)
            self.transport.write(datagram,('255.255.255.255',8000)) # <- write to broadcast address here
        else:
            reactor.stop()

    def datagramReceived(self,protocol)
    reactor.run()


if __name__ == '__main__':
   main()

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读