Merge branch 'vendor/GCC44'
[dragonfly.git] / contrib / bind-9.3 / lib / isccc / include / isccc / cc.h
1 /*
2  * Portions Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
3  * Portions Copyright (C) 2001  Internet Software Consortium.
4  * Portions Copyright (C) 2001  Nominum, Inc.
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC AND NOMINUM DISCLAIMS ALL
11  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
12  * OF MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY
13  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18
19 /* $Id: cc.h,v 1.3.206.1 2004/03/06 08:15:21 marka Exp $ */
20
21 #ifndef ISCCC_CC_H
22 #define ISCCC_CC_H 1
23
24 #include <isc/lang.h>
25 #include <isccc/types.h>
26
27 ISC_LANG_BEGINDECLS
28
29 #define ISCCC_CC_MAXDGRAMPACKET         4096
30
31 #define ISCCC_CCMSGTYPE_STRING          0x00
32 #define ISCCC_CCMSGTYPE_BINARYDATA      0x01
33 #define ISCCC_CCMSGTYPE_TABLE           0x02
34 #define ISCCC_CCMSGTYPE_LIST            0x03
35
36 isc_result_t
37 isccc_cc_towire(isccc_sexpr_t *alist, isccc_region_t *target,
38               isccc_region_t *secret);
39
40 isc_result_t
41 isccc_cc_fromwire(isccc_region_t *source, isccc_sexpr_t **alistp,
42                 isccc_region_t *secret);
43
44 isc_result_t
45 isccc_cc_createmessage(isc_uint32_t version, const char *from, const char *to,
46                      isc_uint32_t serial, isccc_time_t now,
47                      isccc_time_t expires, isccc_sexpr_t **alistp);
48
49 isc_result_t
50 isccc_cc_createack(isccc_sexpr_t *message, isc_boolean_t ok,
51                  isccc_sexpr_t **ackp);
52
53 isc_boolean_t
54 isccc_cc_isack(isccc_sexpr_t *message);
55
56 isc_boolean_t
57 isccc_cc_isreply(isccc_sexpr_t *message);
58
59 isc_result_t
60 isccc_cc_createresponse(isccc_sexpr_t *message, isccc_time_t now,
61                       isccc_time_t expires, isccc_sexpr_t **alistp);
62
63 isccc_sexpr_t *
64 isccc_cc_definestring(isccc_sexpr_t *alist, const char *key, const char *str);
65
66 isccc_sexpr_t *
67 isccc_cc_defineuint32(isccc_sexpr_t *alist, const char *key, isc_uint32_t i);
68
69 isc_result_t
70 isccc_cc_lookupstring(isccc_sexpr_t *alist, const char *key, char **strp);
71
72 isc_result_t
73 isccc_cc_lookupuint32(isccc_sexpr_t *alist, const char *key,
74                     isc_uint32_t *uintp);
75
76 isc_result_t
77 isccc_cc_createsymtab(isccc_symtab_t **symtabp);
78
79 void
80 isccc_cc_cleansymtab(isccc_symtab_t *symtab, isccc_time_t now);
81
82 isc_result_t
83 isccc_cc_checkdup(isccc_symtab_t *symtab, isccc_sexpr_t *message,
84                    isccc_time_t now);
85
86 ISC_LANG_ENDDECLS
87
88 #endif /* ISCCC_CC_H */