rdataclass.h revision 135446
1/*
2 * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
3 * Copyright (C) 1998-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: rdataclass.h,v 1.17.206.1 2004/03/06 08:13:59 marka Exp $ */
19
20#ifndef DNS_RDATACLASS_H
21#define DNS_RDATACLASS_H 1
22
23#include <isc/lang.h>
24
25#include <dns/types.h>
26
27ISC_LANG_BEGINDECLS
28
29isc_result_t
30dns_rdataclass_fromtext(dns_rdataclass_t *classp, isc_textregion_t *source);
31/*
32 * Convert the text 'source' refers to into a DNS class.
33 *
34 * Requires:
35 *	'classp' is a valid pointer.
36 *
37 *	'source' is a valid text region.
38 *
39 * Returns:
40 *	ISC_R_SUCCESS			on success
41 *	DNS_R_UNKNOWN			class is unknown
42 */
43
44isc_result_t
45dns_rdataclass_totext(dns_rdataclass_t rdclass, isc_buffer_t *target);
46/*
47 * Put a textual representation of class 'rdclass' into 'target'.
48 *
49 * Requires:
50 *	'rdclass' is a valid class.
51 *
52 *	'target' is a valid text buffer.
53 *
54 * Ensures:
55 *	If the result is success:
56 *		The used space in 'target' is updated.
57 *
58 * Returns:
59 *	ISC_R_SUCCESS			on success
60 *	ISC_R_NOSPACE			target buffer is too small
61 */
62
63void
64dns_rdataclass_format(dns_rdataclass_t rdclass,
65		      char *array, unsigned int size);
66/*
67 * Format a human-readable representation of the class 'rdclass'
68 * into the character array 'array', which is of size 'size'.
69 * The resulting string is guaranteed to be null-terminated.
70 */
71
72#define DNS_RDATACLASS_FORMATSIZE sizeof("CLASS65535")
73/*
74 * Minimum size of array to pass to dns_rdataclass_format().
75 */
76
77ISC_LANG_ENDDECLS
78
79#endif /* DNS_RDATACLASS_H */
80