kadm5_locl.h revision 178826
1192586Strasz/*
2192586Strasz * Copyright (c) 1997-2000 Kungliga Tekniska H�gskolan
3192586Strasz * (Royal Institute of Technology, Stockholm, Sweden).
4192586Strasz * All rights reserved.
5192586Strasz *
6192586Strasz * Redistribution and use in source and binary forms, with or without
7192586Strasz * modification, are permitted provided that the following conditions
8192586Strasz * are met:
9192586Strasz *
10192586Strasz * 1. Redistributions of source code must retain the above copyright
11192586Strasz *    notice, this list of conditions and the following disclaimer.
12192586Strasz *
13192586Strasz * 2. Redistributions in binary form must reproduce the above copyright
14192804Strasz *    notice, this list of conditions and the following disclaimer in the
15192804Strasz *    documentation and/or other materials provided with the distribution.
16192804Strasz *
17192804Strasz * 3. Neither the name of the Institute nor the names of its contributors
18192804Strasz *    may be used to endorse or promote products derived from this software
19192804Strasz *    without specific prior written permission.
20192804Strasz *
21192804Strasz * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22192804Strasz * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23192804Strasz * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24192804Strasz * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25192586Strasz * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26192586Strasz * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27192586Strasz * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28192586Strasz * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29192586Strasz * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30192586Strasz * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31192586Strasz * SUCH DAMAGE.
32192586Strasz */
33192586Strasz
34192586Strasz/* $Id: kadm5_locl.h 8579 2000-07-08 11:57:40Z assar $ */
35192586Strasz
36192586Strasz#ifndef __KADM5_LOCL_H__
37192586Strasz#define __KADM5_LOCL_H__
38192586Strasz
39192586Strasz#ifdef HAVE_CONFIG_H
40192586Strasz#include <config.h>
41192586Strasz#endif
42192586Strasz
43192586Strasz#include <stdio.h>
44192586Strasz#include <stdlib.h>
45192586Strasz#include <string.h>
46192586Strasz#include <errno.h>
47192586Strasz#include <assert.h>
48192586Strasz#include <limits.h>
49192586Strasz#ifdef HAVE_UNISTD_H
50192586Strasz#include <unistd.h>
51192586Strasz#endif
52192586Strasz#ifdef HAVE_FCNTL_H
53192586Strasz#include <fcntl.h>
54192586Strasz#endif
55192586Strasz#ifdef HAVE_SYS_TYPES_H
56192586Strasz#include <sys/types.h>
57192586Strasz#endif
58192586Strasz#ifdef HAVE_SYS_TIME_H
59192586Strasz#include <sys/time.h>
60#endif
61#ifdef HAVE_UNISTD_H
62#include <unistd.h>
63#endif
64#ifdef HAVE_SYS_FILE_H
65#include <sys/file.h>
66#endif
67#ifdef HAVE_SYS_SOCKET_H
68#include <sys/socket.h>
69#endif
70#ifdef HAVE_SYS_UN_H
71#include <sys/un.h>
72#endif
73#ifdef HAVE_NETDB_H
74#include <netdb.h>
75#endif
76#include <fnmatch.h>
77#include "admin.h"
78#include "kadm5_err.h"
79#include <hdb.h>
80#include <der.h>
81#include <roken.h>
82#include <parse_units.h>
83#include "private.h"
84
85#endif /* __KADM5_LOCL_H__ */
86