From cad1806ec6dbe95586a17a07243d2b47c2e3e158 Mon Sep 17 00:00:00 2001 From: fruffy Date: Sat, 8 Nov 2025 14:04:50 -0500 Subject: [PATCH] Make bf_pktpy the default PTF module. --- ptf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ptf b/ptf index 85c33a1..5ff8fe6 100755 --- a/ptf +++ b/ptf @@ -456,7 +456,7 @@ be subtracted from the result by prefixing them with the '^' character. """ elif os.getenv("PTF_PACKET_MANIPULATION_MODULE"): config[pmm_key] = os.getenv("PTF_PACKET_MANIPULATION_MODULE") else: - config[pmm_key] = "ptf.packet_scapy" + config[pmm_key] = "bf_pktpy.ptf.packet_pktpy" return (config, args)