We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4154381 commit aec1279Copy full SHA for aec1279
multicast-relay.py
@@ -576,7 +576,7 @@ def loop(self):
576
if receivingInterface == 'local' and not self.match(dstAddr, dstPort):
577
continue
578
579
- if self.remoteSockets() and not (receivingInterface == 'remote' and self.noRemoteRelay):
+ if self.remoteSockets() and not (receivingInterface == 'remote' and self.noRemoteRelay) and srcAddr != self.ssdpUnicastAddr:
580
packet = self.aes.encrypt(self.MAGIC + socket.inet_aton(addr) + data)
581
for remoteConnection in self.remoteSockets():
582
if remoteConnection == s:
0 commit comments