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