summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Salzman <daniel.salzman@nic.cz>2022-07-07 16:02:18 +0200
committerDaniel Salzman <daniel.salzman@nic.cz>2022-07-24 19:34:26 +0200
commit1618a5ebc56112116797f9a18c94498d63af1a82 (patch)
treed596531af80dfaecaafaf01436d6043973796224
parentxdp-quic: disable PMTUD on server side (diff)
downloadknot-1618a5ebc56112116797f9a18c94498d63af1a82.tar.xz
knot-1618a5ebc56112116797f9a18c94498d63af1a82.zip
test-fuzz: udjust to extended UDP handler API
-rw-r--r--tests-fuzz/knotd_wrap/udp-handler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests-fuzz/knotd_wrap/udp-handler.c b/tests-fuzz/knotd_wrap/udp-handler.c
index 908c31fb5..cdd872709 100644
--- a/tests-fuzz/knotd_wrap/udp-handler.c
+++ b/tests-fuzz/knotd_wrap/udp-handler.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2021 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
+/* Copyright (C) 2022 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -35,7 +35,7 @@ static inline void next(udp_stdin_t *rq)
}
}
-static void *udp_stdin_init(_unused_ void *xdp_sock)
+static void *udp_stdin_init(_unused_ udp_context_t *ctx, _unused_ void *xdp_sock)
{
udp_stdin_t *rq = calloc(1, sizeof(udp_stdin_t));
if (rq == NULL) {