Merge from vendor branch BINUTILS:
[dragonfly.git] / contrib / bind-9.2.4rc7 / lib / dns / include / dns / xfrin.h
1 /*
2  * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 1999-2001  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /* $Id: xfrin.h,v 1.18.2.1 2004/03/09 06:11:24 marka Exp $ */
19
20 #ifndef DNS_XFRIN_H
21 #define DNS_XFRIN_H 1
22
23 /*****
24  ***** Module Info
25  *****/
26
27 /*
28  * Incoming zone transfers (AXFR + IXFR).
29  */
30
31 /***
32  *** Imports
33  ***/
34
35 #include <isc/lang.h>
36
37 #include <dns/types.h>
38
39 /***
40  *** Types
41  ***/
42
43 /*
44  * A transfer in progress.  This is an opaque type.
45  */
46 typedef struct dns_xfrin_ctx dns_xfrin_ctx_t;
47
48 /***
49  *** Functions
50  ***/
51
52 ISC_LANG_BEGINDECLS
53
54 isc_result_t
55 dns_xfrin_create(dns_zone_t *zone, dns_rdatatype_t xfrtype,
56                  isc_sockaddr_t *masteraddr, dns_tsigkey_t *tsigkey,
57                  isc_mem_t *mctx, isc_timermgr_t *timermgr,
58                  isc_socketmgr_t *socketmgr, isc_task_t *task,
59                  dns_xfrindone_t done, dns_xfrin_ctx_t **xfrp);
60 /*
61  * Attempt to start an incoming zone transfer of 'zone'
62  * from 'masteraddr', creating a dns_xfrin_ctx_t object to
63  * manage it.  Attach '*xfrp' to the newly created object.
64  *
65  * Iff ISC_R_SUCCESS is returned, '*done' is guaranteed to be
66  * called in the context of 'task', with 'zone' and a result
67  * code as arguments when the transfer finishes.
68  *
69  * Requires:
70  *      'xfrtype' is dns_rdatatype_axfr or dns_rdatatype_ixfr.
71  *
72  *      If 'xfrtype' is dns_rdatatype_ixfr, the zone has a
73  *      database.
74  */
75
76 void
77 dns_xfrin_shutdown(dns_xfrin_ctx_t *xfr);
78 /*
79  * If the zone transfer 'xfr' has already finished,
80  * do nothing.  Otherwise, abort it and cause it to call
81  * its done callback with a status of ISC_R_CANCELLED.
82  */
83
84 void
85 dns_xfrin_detach(dns_xfrin_ctx_t **xfrp);
86 /*
87  * Detach a reference to a zone transfer object.
88  * Caller to maintain external locking if required.
89  */
90
91 void
92 dns_xfrin_attach(dns_xfrin_ctx_t *source, dns_xfrin_ctx_t **target);
93 /*
94  * Caller to maintain external locking if required.
95  */
96
97 ISC_LANG_ENDDECLS
98
99 #endif /* DNS_XFRIN_H */