stop writing to udp.bytes

This commit is contained in:
devdesk 2024-02-15 20:23:51 +02:00
parent d9cb5986ee
commit 679a87bf45

View File

@ -37,8 +37,6 @@ def live_capture():
if l != 6972: if l != 6972:
continue continue
data = bytes(pkt) data = bytes(pkt)
with open('udp.bytes', 'ab+') as fd:
fd.write(bytes(pkt.payload))
yield data yield data