/*1* Copyright (c) 2005, PADL Software Pty Ltd.2* All rights reserved.3*4* Redistribution and use in source and binary forms, with or without5* modification, are permitted provided that the following conditions6* are met:7*8* 1. Redistributions of source code must retain the above copyright9* notice, this list of conditions and the following disclaimer.10*11* 2. Redistributions in binary form must reproduce the above copyright12* notice, this list of conditions and the following disclaimer in the13* documentation and/or other materials provided with the distribution.14*15* 3. Neither the name of PADL Software nor the names of its contributors16* may be used to endorse or promote products derived from this software17* without specific prior written permission.18*19* THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS ``AS IS'' AND20* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE21* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE22* ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE23* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL24* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS25* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)26* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT27* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY28* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF29* SUCH DAMAGE.30*/3132#ifndef __HEADERS_H__33#define __HEADERS_H__343536#include <config.h>3738#include <limits.h>39#include <stdio.h>40#include <stdlib.h>41#include <string.h>42#include <errno.h>43#include <signal.h>44#include <stdarg.h>45#ifdef HAVE_SYS_TYPES_H46#include <sys/types.h>47#endif48#ifdef HAVE_SYS_PARAM_H49#include <sys/param.h>50#endif51#ifdef HAVE_FCNTL_H52#include <fcntl.h>53#endif54#ifdef HAVE_SYS_SELECT_H55#include <sys/select.h>56#endif57#ifdef HAVE_SYS_SOCKET_H58#include <sys/socket.h>59#endif60#ifdef HAVE_SYS_UN_H61#include <sys/un.h>62#endif63#ifdef HAVE_SYS_UCRED_H64#include <sys/ucred.h>65#endif66#ifdef HAVE_UTIL_H67#include <util.h>68#endif69#ifdef HAVE_LIBUTIL_H70#include <libutil.h>71#endif72#include <ctype.h>73#include <err.h>74#include <roken.h>75#include <getarg.h>76#include <base64.h>77#include <parse_units.h>78#include <parse_time.h>798081#include <krb5.h>82#include <heim_threads.h>8384#include <heim-ipc.h>8586#include "crypto-headers.h"8788#endif /* __HEADERS_H__ */89909192