diff options
author | Daniel Salzman <daniel.salzman@nic.cz> | 2022-07-07 16:02:18 +0200 |
---|---|---|
committer | Daniel Salzman <daniel.salzman@nic.cz> | 2022-07-24 19:34:26 +0200 |
commit | 1618a5ebc56112116797f9a18c94498d63af1a82 (patch) | |
tree | d596531af80dfaecaafaf01436d6043973796224 | |
parent | xdp-quic: disable PMTUD on server side (diff) | |
download | knot-1618a5ebc56112116797f9a18c94498d63af1a82.tar.xz knot-1618a5ebc56112116797f9a18c94498d63af1a82.zip |
test-fuzz: udjust to extended UDP handler API
-rw-r--r-- | tests-fuzz/knotd_wrap/udp-handler.c | 4 |
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) { |