kuser_locl.h revision 256281
1102159Sache/*
2102159Sache * Copyright (c) 1997 - 1999 Kungliga Tekniska H��gskolan
3102159Sache * (Royal Institute of Technology, Stockholm, Sweden).
4102159Sache * All rights reserved.
5102159Sache *
6102159Sache * Redistribution and use in source and binary forms, with or without
7102159Sache * modification, are permitted provided that the following conditions
8102159Sache * are met:
976612Stshiozak *
10102159Sache * 1. Redistributions of source code must retain the above copyright
11102159Sache *    notice, this list of conditions and the following disclaimer.
12102159Sache *
13227753Stheraven * 2. Redistributions in binary form must reproduce the above copyright
14227753Stheraven *    notice, this list of conditions and the following disclaimer in the
15227753Stheraven *    documentation and/or other materials provided with the distribution.
16227753Stheraven *
17227753Stheraven * 3. Neither the name of the Institute nor the names of its contributors
1876612Stshiozak *    may be used to endorse or promote products derived from this software
1976612Stshiozak *    without specific prior written permission.
2076612Stshiozak *
2176612Stshiozak * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
2276612Stshiozak * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2376612Stshiozak * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2476612Stshiozak * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
2576612Stshiozak * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26102159Sache * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27102159Sache * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28102159Sache * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2976612Stshiozak * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30102159Sache * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3176612Stshiozak * SUCH DAMAGE.
3276612Stshiozak */
33102159Sache
3476612Stshiozak/* $Id$ */
3576612Stshiozak
3676612Stshiozak#ifndef __KUSER_LOCL_H__
3776612Stshiozak#define __KUSER_LOCL_H__
3876612Stshiozak
3976612Stshiozak#include <config.h>
4076612Stshiozak
4176612Stshiozak#include <stdio.h>
4276612Stshiozak#include <stdlib.h>
4376612Stshiozak#include <string.h>
4486170Sobrien#include <time.h>
4576612Stshiozak#ifdef HAVE_SYS_TYPES_H
4676612Stshiozak#include <sys/types.h>
47227753Stheraven#endif
4876612Stshiozak#ifdef HAVE_PWD_H
4976612Stshiozak#include <pwd.h>
50227753Stheraven#endif
5176612Stshiozak#ifdef HAVE_SYS_TIME_H
52102159Sache#include <sys/time.h>
53102159Sache#endif
54227753Stheraven#ifdef HAVE_SYS_SOCKET_H
5576612Stshiozak#include <sys/socket.h>
56102159Sache#endif
57102159Sache#ifdef HAVE_NETINET_IN_H
58227753Stheraven#include <netinet/in.h>
59102159Sache#endif
60102159Sache#ifdef HAVE_NETINET_IN6_H
6176612Stshiozak#include <netinet/in6.h>
62102159Sache#endif
63102159Sache#ifdef HAVE_NETINET6_IN6_H
6476612Stshiozak#include <netinet6/in6.h>
65227753Stheraven#endif
66227753Stheraven
67227753Stheraven#ifdef HAVE_ARPA_INET_H
68227753Stheraven#include <arpa/inet.h>
69227753Stheraven#endif
70#include <roken.h>
71#include <getarg.h>
72#include <parse_time.h>
73#include <err.h>
74#include <krb5.h>
75
76#if defined(HAVE_SYS_IOCTL_H) && SunOS != 40
77#include <sys/ioctl.h>
78#endif
79#ifdef HAVE_SYS_IOCCOM_H
80#include <sys/ioccom.h>
81#endif
82#ifndef NO_AFS
83#include <kafs.h>
84#endif
85#include "crypto-headers.h" /* for UI_UTIL_read_pw_string */
86
87#include <rtbl.h>
88
89#ifdef HAVE_LOCALE_H
90#include <locale.h>
91#endif
92
93#ifdef LIBINTL
94#include <libintl.h>
95#define N_(x,y) gettext(x)
96#define NP_(x,y) (x)
97#define getarg_i18n gettext
98#else
99#define N_(x,y) (x)
100#define NP_(x,y) (x)
101#define getarg_i18n NULL
102#define bindtextdomain(package, localedir)
103#define textdomain(package)
104#endif
105
106extern krb5_context kcc_context;
107
108#endif /* __KUSER_LOCL_H__ */
109