diff options
author | Daniel Salzman <daniel.salzman@nic.cz> | 2021-03-19 15:31:56 +0100 |
---|---|---|
committer | Daniel Salzman <daniel.salzman@nic.cz> | 2021-04-08 18:52:27 +0200 |
commit | 164fcff5bbe0a719d1346cbd21ad2dd9f8a4628d (patch) | |
tree | 53630619e1c34ff5b8843cae8159fbcad6671b44 /tests-fuzz | |
parent | server: add polling wrapper for unix poll and epoll (diff) | |
download | knot-164fcff5bbe0a719d1346cbd21ad2dd9f8a4628d.tar.xz knot-164fcff5bbe0a719d1346cbd21ad2dd9f8a4628d.zip |
server: merge epoll_ctx with fdset
Diffstat (limited to 'tests-fuzz')
-rw-r--r-- | tests-fuzz/knotd_wrap/udp-handler.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests-fuzz/knotd_wrap/udp-handler.c b/tests-fuzz/knotd_wrap/udp-handler.c index 51bddf3a1..c6e28be6e 100644 --- a/tests-fuzz/knotd_wrap/udp-handler.c +++ b/tests-fuzz/knotd_wrap/udp-handler.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2020 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz> +/* Copyright (C) 2021 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 @@ -14,6 +14,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ +#include <signal.h> + #include "knot/server/udp-handler.c" #include "knot/common/log.h" |