1/*	$NetBSD: types.h,v 1.5.6.1 2012/06/05 21:15:28 bouyer Exp $	*/
2
3/*
4 * Copyright (C) 2004-2009, 2012  Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (C) 1999-2003  Internet Software Consortium.
6 *
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
18 */
19
20/* Id */
21
22#ifndef ISC_TYPES_H
23#define ISC_TYPES_H 1
24
25#include <isc/bind9.h>
26#include <isc/namespace.h>
27
28/*! \file isc/types.h
29 * \brief
30 * OS-specific types, from the OS-specific include directories.
31 */
32#include <isc/int.h>
33#include <isc/offset.h>
34
35/*
36 * XXXDCL should isc_boolean_t be moved here, requiring an explicit include
37 * of <isc/boolean.h> when ISC_TRUE/ISC_FALSE/ISC_TF() are desired?
38 */
39#include <isc/boolean.h>
40/*
41 * XXXDCL This is just for ISC_LIST and ISC_LINK, but gets all of the other
42 * list macros too.
43 */
44#include <isc/list.h>
45
46/* Core Types.  Alphabetized by defined type. */
47
48typedef struct isc_appctx		isc_appctx_t;	 	/*%< Application context */
49typedef struct isc_backtrace_symmap	isc_backtrace_symmap_t; /*%< Symbol Table Entry */
50typedef struct isc_bitstring		isc_bitstring_t; 	/*%< Bitstring */
51typedef struct isc_buffer		isc_buffer_t;		/*%< Buffer */
52typedef ISC_LIST(isc_buffer_t)		isc_bufferlist_t;	/*%< Buffer List */
53typedef struct isc_constregion		isc_constregion_t;	/*%< Const region */
54typedef struct isc_consttextregion	isc_consttextregion_t;	/*%< Const Text Region */
55typedef struct isc_entropy		isc_entropy_t;		/*%< Entropy */
56typedef struct isc_entropysource	isc_entropysource_t;	/*%< Entropy Source */
57typedef struct isc_event		isc_event_t;		/*%< Event */
58typedef ISC_LIST(isc_event_t)		isc_eventlist_t;	/*%< Event List */
59typedef unsigned int			isc_eventtype_t;	/*%< Event Type */
60typedef isc_uint32_t			isc_fsaccess_t;		/*%< FS Access */
61typedef struct isc_hash			isc_hash_t;		/*%< Hash */
62typedef struct isc_httpd		isc_httpd_t;		/*%< HTTP client */
63typedef void (isc_httpdfree_t)(isc_buffer_t *, void *);		/*%< HTTP free function */
64typedef struct isc_httpdmgr		isc_httpdmgr_t;		/*%< HTTP manager */
65typedef struct isc_httpdurl		isc_httpdurl_t;		/*%< HTTP URL */
66typedef void (isc_httpdondestroy_t)(void *);			/*%< Callback on destroying httpd */
67typedef struct isc_interface		isc_interface_t;	/*%< Interface */
68typedef struct isc_interfaceiter	isc_interfaceiter_t;	/*%< Interface Iterator */
69typedef struct isc_interval		isc_interval_t;		/*%< Interval */
70typedef struct isc_lex			isc_lex_t;		/*%< Lex */
71typedef struct isc_log 			isc_log_t;		/*%< Log */
72typedef struct isc_logcategory		isc_logcategory_t;	/*%< Log Category */
73typedef struct isc_logconfig		isc_logconfig_t;	/*%< Log Configuration */
74typedef struct isc_logmodule		isc_logmodule_t;	/*%< Log Module */
75typedef struct isc_mem			isc_mem_t;		/*%< Memory */
76typedef struct isc_mempool		isc_mempool_t;		/*%< Memory Pool */
77typedef struct isc_msgcat		isc_msgcat_t;		/*%< Message Catalog */
78typedef struct isc_ondestroy		isc_ondestroy_t;	/*%< On Destroy */
79typedef struct isc_netaddr		isc_netaddr_t;		/*%< Net Address */
80typedef struct isc_portset		isc_portset_t;		/*%< Port Set */
81typedef struct isc_quota		isc_quota_t;		/*%< Quota */
82typedef struct isc_random		isc_random_t;		/*%< Random */
83typedef struct isc_ratelimiter		isc_ratelimiter_t;	/*%< Rate Limiter */
84typedef struct isc_region		isc_region_t;		/*%< Region */
85typedef isc_uint64_t			isc_resourcevalue_t;	/*%< Resource Value */
86typedef unsigned int			isc_result_t;		/*%< Result */
87#ifndef ISC_PLATFORM_USE_NATIVE_RWLOCKS
88typedef struct isc_rwlock		isc_rwlock_t;		/*%< Read Write Lock */
89#else
90typedef pthread_rwlock_t		isc_rwlock_t;		/*%< Read Write Lock */
91#endif
92typedef struct isc_sockaddr		isc_sockaddr_t;		/*%< Socket Address */
93typedef struct isc_socket		isc_socket_t;		/*%< Socket */
94typedef struct isc_socketevent		isc_socketevent_t;	/*%< Socket Event */
95typedef struct isc_socketmgr		isc_socketmgr_t;	/*%< Socket Manager */
96typedef struct isc_stats		isc_stats_t;		/*%< Statistics */
97typedef int				isc_statscounter_t;	/*%< Statistics Counter */
98typedef struct isc_symtab		isc_symtab_t;		/*%< Symbol Table */
99typedef struct isc_task			isc_task_t;		/*%< Task */
100typedef ISC_LIST(isc_task_t)		isc_tasklist_t;		/*%< Task List */
101typedef struct isc_taskmgr		isc_taskmgr_t;		/*%< Task Manager */
102typedef struct isc_textregion		isc_textregion_t;	/*%< Text Region */
103typedef struct isc_time			isc_time_t;		/*%< Time */
104typedef struct isc_timer		isc_timer_t;		/*%< Timer */
105typedef struct isc_timermgr		isc_timermgr_t;		/*%< Timer Manager */
106
107typedef void (*isc_taskaction_t)(isc_task_t *, isc_event_t *);
108typedef int (*isc_sockfdwatch_t)(isc_task_t *, isc_socket_t *, void *, int);
109
110/* The following cannot be listed alphabetically due to forward reference */
111typedef isc_result_t (isc_httpdaction_t)(const char *url,
112					 const char *querystring,
113					 void *arg,
114					 unsigned int *retcode,
115					 const char **retmsg,
116					 const char **mimetype,
117					 isc_buffer_t *body,
118					 isc_httpdfree_t **freecb,
119					 void **freecb_args);
120typedef isc_boolean_t (isc_httpdclientok_t)(const isc_sockaddr_t *, void *);
121
122/*% Resource */
123typedef enum {
124	isc_resource_coresize = 1,
125	isc_resource_cputime,
126	isc_resource_datasize,
127	isc_resource_filesize,
128	isc_resource_lockedmemory,
129	isc_resource_openfiles,
130	isc_resource_processes,
131	isc_resource_residentsize,
132	isc_resource_stacksize
133} isc_resource_t;
134
135#endif /* ISC_TYPES_H */
136