From ebed4f198557d9e9a64e5d5fd3afc77154cea970 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Sun, 16 Feb 2025 18:55:34 -0800 Subject: [PATCH] fix testudp --- test/testudp.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/testudp.cpp b/test/testudp.cpp index 91ef3ab..2da75cd 100644 --- a/test/testudp.cpp +++ b/test/testudp.cpp @@ -118,7 +118,8 @@ void testSearch(bool be, std::initializer_list names) M.skip(8, __FILE__, __LINE__); // placeholder for header to_wire(M, uint32_t(0x12345678)); - M.skip(4, __FILE__, __LINE__); + to_wire(M, uint8_t(pva_search_flags::Unicast)); // 127.0.0.1 is ucast + M.skip(3, __FILE__, __LINE__); SockAddr reply(SockAddr::any(AF_INET, 0x1020)); to_wire(M, reply); to_wire(M, uint16_t(reply.port()));