From f16bbbb653837b27b86a96beed5c71f52d4db20f Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 11 Aug 2022 12:38:40 +0100 Subject: [PATCH] Revert "Fix IPV6 send problems" This reverts commit 3c7f54d7d57a336260f07b4357613ce13f4f42b6. --- hblink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hblink.py b/hblink.py index 4e3844e..f146c3f 100755 --- a/hblink.py +++ b/hblink.py @@ -302,7 +302,7 @@ class OPENBRIDGE(DatagramProtocol): _h.update(_packet) _hash = _h.digest() _packet = b''.join([_packet,_hash]) - systems[system].transport.write(_packet, (self._CONFIG['SYSTEMS'][system]['TARGET_IP'], self._CONFIG['SYSTEMS'][system]['TARGET_PORT'])) + self.transport.write(_packet, (self._CONFIG['SYSTEMS'][system]['TARGET_IP'], self._CONFIG['SYSTEMS'][system]['TARGET_PORT'])) logger.trace('(%s) *BridgeControl* retransmitted BCTO.',self._system) else: logger.trace('(%s) *BridgeControl* not retransmitting BCTO, TARGET_IP currently not known.',self._system)