Add BIND 9.2.4rc7.
[dragonfly.git] / contrib / bind-9.2.4rc7 / lib / dns / include / dns / rdatatype.h
blob9b22ae65da429036b67af9f46198e3b9c8d30396
1 /*
2 * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
3 * Copyright (C) 1998-2001 Internet Software Consortium.
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.
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.
18 /* $Id: rdatatype.h,v 1.17.2.1 2004/03/09 06:11:21 marka Exp $ */
20 #ifndef DNS_RDATATYPE_H
21 #define DNS_RDATATYPE_H 1
23 #include <isc/lang.h>
25 #include <dns/types.h>
27 ISC_LANG_BEGINDECLS
29 isc_result_t
30 dns_rdatatype_fromtext(dns_rdatatype_t *typep, isc_textregion_t *source);
32 * Convert the text 'source' refers to into a DNS rdata type.
34 * Requires:
35 * 'typep' is a valid pointer.
37 * 'source' is a valid text region.
39 * Returns:
40 * ISC_R_SUCCESS on success
41 * DNS_R_UNKNOWN type is unknown
44 isc_result_t
45 dns_rdatatype_totext(dns_rdatatype_t type, isc_buffer_t *target);
47 * Put a textual representation of type 'type' into 'target'.
49 * Requires:
50 * 'type' is a valid type.
52 * 'target' is a valid text buffer.
54 * Ensures:
55 * If the result is success:
56 * The used space in 'target' is updated.
58 * Returns:
59 * ISC_R_SUCCESS on success
60 * ISC_R_NOSPACE target buffer is too small
63 void
64 dns_rdatatype_format(dns_rdatatype_t rdtype,
65 char *array, unsigned int size);
67 * Format a human-readable representation of the type 'rdtype'
68 * into the character array 'array', which is of size 'size'.
69 * The resulting string is guaranteed to be null-terminated.
72 #define DNS_RDATATYPE_FORMATSIZE sizeof("TYPE65535")
74 * Minimum size of array to pass to dns_rdatatype_format().
75 * May need to be adjusted if a new RR type with a very long
76 * name is defined.
79 ISC_LANG_ENDDECLS
81 #endif /* DNS_RDATATYPE_H */