Merge from vendor branch GDB:
[dragonfly.git] / contrib / bind-9.3 / lib / dns / include / dns / soa.h
1 /*
2  * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 2000, 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: soa.h,v 1.2.206.1 2004/03/06 08:14:00 marka Exp $ */
19
20 #ifndef DNS_SOA_H
21 #define DNS_SOA_H 1
22
23 /*****
24  ***** Module Info
25  *****/
26
27 /*
28  * SOA utilities.
29  */
30
31 /***
32  *** Imports
33  ***/
34
35 #include <isc/lang.h>
36 #include <isc/types.h>
37
38 #include <dns/types.h>
39
40 ISC_LANG_BEGINDECLS
41
42 isc_uint32_t
43 dns_soa_getserial(dns_rdata_t *rdata);
44 isc_uint32_t
45 dns_soa_getrefresh(dns_rdata_t *rdata);
46 isc_uint32_t
47 dns_soa_getretry(dns_rdata_t *rdata);
48 isc_uint32_t
49 dns_soa_getexpire(dns_rdata_t *rdata);
50 isc_uint32_t
51 dns_soa_getminimum(dns_rdata_t *rdata);
52 /*
53  * Extract an integer field from the rdata of a SOA record.
54  *
55  * Requires:
56  *      rdata refers to the rdata of a well-formed SOA record.
57  */
58
59 void
60 dns_soa_setserial(isc_uint32_t val, dns_rdata_t *rdata);
61 void
62 dns_soa_setrefresh(isc_uint32_t val, dns_rdata_t *rdata);
63 void
64 dns_soa_setretry(isc_uint32_t val, dns_rdata_t *rdata);
65 void
66 dns_soa_setexpire(isc_uint32_t val, dns_rdata_t *rdata);
67 void
68 dns_soa_setminimum(isc_uint32_t val, dns_rdata_t *rdata);
69 /*
70  * Change an integer field of a SOA record by modifying the
71  * rdata in-place.
72  *
73  * Requires:
74  *      rdata refers to the rdata of a well-formed SOA record.
75  */
76
77
78 ISC_LANG_ENDDECLS
79
80 #endif /* DNS_SOA_H */