tests: fix UDP multicast transport tests with IPv6
A valid scope id is always required on the multicast address
Change-Id: Ic676fcde0ee50daf75eb38c137e3cb917f43699f
diff --git a/tests/daemon/face/websocket-transport-fixture.hpp b/tests/daemon/face/websocket-transport-fixture.hpp
index 2e1e61e..eed4923 100644
--- a/tests/daemon/face/websocket-transport-fixture.hpp
+++ b/tests/daemon/face/websocket-transport-fixture.hpp
@@ -32,6 +32,7 @@
#include "tests/test-common.hpp"
#include "tests/daemon/limited-io.hpp"
#include "tests/daemon/face/dummy-link-service.hpp"
+#include "tests/daemon/face/transport-test-common.hpp"
namespace nfd::tests {
@@ -86,10 +87,12 @@
client.connect(con);
}
- /** \brief initialize both server and client, and have each other connected, create Transport
+ /**
+ * \brief Initialize both server and client, and have each other connected, create Transport
*/
void
- initialize(ip::address address,
+ initialize(const shared_ptr<const ndn::net::NetworkInterface>&,
+ const ip::address& address,
time::milliseconds pingInterval = 10_s,
time::milliseconds pongTimeout = 1_s)
{