1178825Sdfr/*
2178825Sdfr * Copyright (c) 2005, PADL Software Pty Ltd.
3178825Sdfr * All rights reserved.
4178825Sdfr *
5178825Sdfr * Redistribution and use in source and binary forms, with or without
6178825Sdfr * modification, are permitted provided that the following conditions
7178825Sdfr * are met:
8178825Sdfr *
9178825Sdfr * 1. Redistributions of source code must retain the above copyright
10178825Sdfr *    notice, this list of conditions and the following disclaimer.
11178825Sdfr *
12178825Sdfr * 2. Redistributions in binary form must reproduce the above copyright
13178825Sdfr *    notice, this list of conditions and the following disclaimer in the
14178825Sdfr *    documentation and/or other materials provided with the distribution.
15178825Sdfr *
16178825Sdfr * 3. Neither the name of PADL Software nor the names of its contributors
17178825Sdfr *    may be used to endorse or promote products derived from this software
18178825Sdfr *    without specific prior written permission.
19178825Sdfr *
20178825Sdfr * THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS ``AS IS'' AND
21178825Sdfr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22178825Sdfr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23178825Sdfr * ARE DISCLAIMED.  IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE
24178825Sdfr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25178825Sdfr * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26178825Sdfr * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27178825Sdfr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28178825Sdfr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29178825Sdfr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30178825Sdfr * SUCH DAMAGE.
31178825Sdfr */
32178825Sdfr
33178825Sdfr#ifndef __HEADERS_H__
34178825Sdfr#define __HEADERS_H__
35178825Sdfr
36233294Sstas
37178825Sdfr#include <config.h>
38233294Sstas
39178825Sdfr#include <limits.h>
40178825Sdfr#include <stdio.h>
41178825Sdfr#include <stdlib.h>
42178825Sdfr#include <string.h>
43178825Sdfr#include <errno.h>
44178825Sdfr#include <signal.h>
45178825Sdfr#include <stdarg.h>
46178825Sdfr#ifdef HAVE_SYS_TYPES_H
47178825Sdfr#include <sys/types.h>
48178825Sdfr#endif
49178825Sdfr#ifdef HAVE_SYS_PARAM_H
50178825Sdfr#include <sys/param.h>
51178825Sdfr#endif
52178825Sdfr#ifdef HAVE_FCNTL_H
53178825Sdfr#include <fcntl.h>
54178825Sdfr#endif
55178825Sdfr#ifdef HAVE_SYS_SELECT_H
56178825Sdfr#include <sys/select.h>
57178825Sdfr#endif
58178825Sdfr#ifdef HAVE_SYS_SOCKET_H
59178825Sdfr#include <sys/socket.h>
60178825Sdfr#endif
61178825Sdfr#ifdef HAVE_SYS_UN_H
62178825Sdfr#include <sys/un.h>
63178825Sdfr#endif
64178825Sdfr#ifdef HAVE_SYS_UCRED_H
65178825Sdfr#include <sys/ucred.h>
66178825Sdfr#endif
67178825Sdfr#ifdef HAVE_UTIL_H
68178825Sdfr#include <util.h>
69178825Sdfr#endif
70178825Sdfr#ifdef HAVE_LIBUTIL_H
71178825Sdfr#include <libutil.h>
72178825Sdfr#endif
73233294Sstas#include <ctype.h>
74178825Sdfr#include <err.h>
75178825Sdfr#include <roken.h>
76178825Sdfr#include <getarg.h>
77178825Sdfr#include <base64.h>
78178825Sdfr#include <parse_units.h>
79233294Sstas#include <parse_time.h>
80233294Sstas
81233294Sstas
82178825Sdfr#include <krb5.h>
83233294Sstas#include <heim_threads.h>
84178825Sdfr
85233294Sstas#include <heim-ipc.h>
86233294Sstas
87233294Sstas#include "crypto-headers.h"
88233294Sstas
89178825Sdfr#endif /* __HEADERS_H__ */
90178825Sdfr
91