xref: /netbsd-src/external/mpl/bind/dist/lib/dns/probes.d (revision 9689912e6b171cbda866ec33f15ae94a04e2c02d)
1 /*
2  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
3  *
4  * SPDX-License-Identifier: MPL-2.0
5  *
6  * This Source Code Form is subject to the terms of the Mozilla Public
7  * License, v. 2.0. If a copy of the MPL was not distributed with this
8  * file, you can obtain one at https://mozilla.org/MPL/2.0/.
9  *
10  * See the COPYRIGHT file distributed with this work for additional
11  * information regarding copyright ownership.
12  */
13 
14 provider libdns {
15 	probe xfrin_axfr_finalize_begin(void *, char *);
16 	probe xfrin_axfr_finalize_end(void *, char *, int);
17 	probe xfrin_connected(void *, char *, int);
18 	probe xfrin_done_callback_begin(void *, char *, int);
19 	probe xfrin_done_callback_end(void *, char *, int);
20 	probe xfrin_read(void *, char *, int);
21 	probe xfrin_recv_answer(void *, char *, void *);
22 	probe xfrin_recv_done(void *, char *, int);
23 	probe xfrin_recv_parsed(void *, char *, int);
24 	probe xfrin_recv_question(void *, char *, void *);
25 	probe xfrin_recv_send_request(void *, char *);
26 	probe xfrin_recv_start(void *, char *, int);
27 	probe xfrin_recv_try_axfr(void *, char *, int);
28 	probe xfrin_sent(void *, char *, int);
29 	probe xfrin_start(void *, char *);
30 };
31