1 /* 2 * Copyright (C) Internet Systems Consortium, Inc. ("ISC") 3 * 4 * This Source Code Form is subject to the terms of the Mozilla Public 5 * License, v. 2.0. If a copy of the MPL was not distributed with this 6 * file, you can obtain one at https://mozilla.org/MPL/2.0/. 7 * 8 * See the COPYRIGHT file distributed with this work for additional 9 * information regarding copyright ownership. 10 */ 11 12 #ifndef NAMED_FUZZ_H 13 #define NAMED_FUZZ_H 14 15 void 16 named_fuzz_notify(void); 17 18 void 19 named_fuzz_setup(void); 20 21 typedef enum { 22 ns_fuzz_none, 23 ns_fuzz_client, 24 ns_fuzz_tcpclient, 25 ns_fuzz_resolver, 26 ns_fuzz_http, 27 ns_fuzz_rndc 28 } ns_fuzz_t; 29 30 #endif /* NAMED_FUZZ_H */ 31