From: Štěpán Balážik Date: Wed, 17 Jun 2026 20:37:14 +0000 (+0200) Subject: amend! Port the long TCP stream test to Python X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Fstepan%2Ftcp-system-test-python;p=thirdparty%2Fbind9.git amend! Port the long TCP stream test to Python Port the long TCP stream test to Python Previously, the packet.pl script was used to send the a series of frames to named; this worked by accident as most of these were refused by the kernel with EAGAIN. packet.pl prints a dot every 1000 packets, so this slowed the script down and allowed some frames to get through. Reimplement the test in Python: build the packet with dnspython, send ~6 MiB of data over TCP discarding all replies and then check if the server is still alive. ---