Import Heimdal build-helper includes from cryptosrc-intl.
This commit is contained in:
parent
aed1ad645a
commit
827eba2a5e
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,10 @@
|
|||
/* krb5-types.h -- this file was generated for i386-unknown-netbsd1.4P by
|
||||
$Id: krb5-types.h,v 1.1.1.1 2000/06/16 19:18:30 thorpej Exp $ */
|
||||
|
||||
#ifndef __krb5_types_h__
|
||||
#define __krb5_types_h__
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#endif /* __krb5_types_h__ */
|
|
@ -0,0 +1,10 @@
|
|||
/* ktypes.h -- this file was generated for i386-unknown-netbsd1.4Y by
|
||||
$Id: ktypes.h,v 1.1.1.1 2000/06/16 19:18:31 thorpej Exp $ */
|
||||
|
||||
#ifndef __ktypes_h__
|
||||
#define __ktypes_h__
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#endif /* __ktypes_h__ */
|
|
@ -0,0 +1,277 @@
|
|||
/* -*- C -*-
|
||||
* Copyright (c) 1995, 1996, 1997 Kungliga Tekniska Högskolan
|
||||
* (Royal Institute of Technology, Stockholm, Sweden).
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* 3. Neither the name of the Institute nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Add here functions that don't have a prototype on your system.
|
||||
*
|
||||
* $Id: protos.h,v 1.1.1.1 2000/06/16 19:18:30 thorpej Exp $
|
||||
*/
|
||||
|
||||
#ifdef NEED_CRYPT_PROTO
|
||||
char *crypt(const char*, const char*);
|
||||
#endif
|
||||
|
||||
#ifdef NEED_STRTOK_R_PROTO
|
||||
char *strtok_r (char *s1, const char *s2, char **lasts);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_OPTARG_DECLARATION
|
||||
extern char *optarg;
|
||||
#endif
|
||||
#ifndef HAVE_OPTERR_DECLARATION
|
||||
extern int opterr;
|
||||
#endif
|
||||
#ifndef HAVE_OPTIND_DECLARATION
|
||||
extern int optind;
|
||||
#endif
|
||||
#ifndef HAVE_OPTOPT_DECLARATION
|
||||
extern int optopt;
|
||||
#endif
|
||||
|
||||
#if defined(__GNUC__) && SunOS == 4
|
||||
|
||||
/* To get type fd_set */
|
||||
#include <sys/types.h>
|
||||
#include <sys/time.h>
|
||||
|
||||
/* To get struct sockaddr, struct in_addr and struct hostent */
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
#include <netdb.h>
|
||||
|
||||
/* To get struct stat */
|
||||
#include <sys/stat.h>
|
||||
|
||||
/* To get struct utimbuf */
|
||||
#include <utime.h>
|
||||
|
||||
#if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT)
|
||||
#define atexit(X) on_exit(X, NULL)
|
||||
#define HAVE_ATEXIT 1
|
||||
#endif
|
||||
#ifdef NEED_UTIME_PROTO
|
||||
int utime(const char *, const struct utimbuf *);
|
||||
#endif
|
||||
int syscall(int, ...);
|
||||
pid_t getpid(void);
|
||||
int ftruncate(int, off_t);
|
||||
int fchmod(int, mode_t);
|
||||
int fchown(int fd, int owner, int group);
|
||||
int fsync(int);
|
||||
int seteuid(uid_t);
|
||||
int setreuid(int, int);
|
||||
int flock(int, int);
|
||||
int gettimeofday(struct timeval *tp, struct timezone *tzp);
|
||||
int lstat(const char *, struct stat *);
|
||||
int ioctl(int, int, void *);
|
||||
int getpriority(int which, int who);
|
||||
int setpriority(int which, int who, int priority);
|
||||
int getdtablesize(void);
|
||||
int initgroups(const char *name, int basegid);
|
||||
long ulimit(int cmd, long newlimit);
|
||||
int vhangup(void);
|
||||
|
||||
int sigblock(int);
|
||||
int sigsetmask(int);
|
||||
int setitimer(int which, struct itimerval *value, struct itimerval *ovalue);
|
||||
|
||||
int munmap(caddr_t addr, int len);
|
||||
|
||||
int socket(int, int, int);
|
||||
int setsockopt(int, int, int, void *, int);
|
||||
int bind(int, void *, int);
|
||||
int getsockname(int, struct sockaddr *, int *);
|
||||
int accept(int, struct sockaddr *, int *);
|
||||
int connect(int, struct sockaddr *, int);
|
||||
int listen(int, int);
|
||||
int recv(int s, void *buf, int len, int flags);
|
||||
int recvfrom(int, char *, int, int, void *, int *);
|
||||
int sendto(int, const char *, int, int, void *, int);
|
||||
int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
|
||||
int shutdown(int, int);
|
||||
int getpeername(int, struct sockaddr *, int *);
|
||||
int getsockopt(int, int, int, void *, int *);
|
||||
int send(int s, const void *msg, int len, int flags);
|
||||
struct strbuf;
|
||||
int getmsg(int fd, struct strbuf *ctlptr, struct strbuf *dataptr, int *flags);
|
||||
|
||||
char *inet_ntoa(struct in_addr in);
|
||||
unsigned long inet_addr(const char *cp);
|
||||
int gethostname(char *, int);
|
||||
struct hostent *gethostbyname(const char *);
|
||||
int dn_expand(const u_char *msg,
|
||||
const u_char *eomorig,
|
||||
const u_char *comp_dn,
|
||||
char *exp_dn,
|
||||
int length);
|
||||
int res_search(const char *dname,
|
||||
int class,
|
||||
int type,
|
||||
u_char *answer,
|
||||
int anslen);
|
||||
|
||||
int yp_get_default_domain (char **outdomain);
|
||||
int innetgr(const char *netgroup, const char *machine,
|
||||
const char *user, const char *domain);
|
||||
|
||||
char *getwd(char *pathname);
|
||||
|
||||
void bzero(char *b, int length);
|
||||
int strcasecmp(const char *, const char *);
|
||||
void swab(const char *, char *, int);
|
||||
int atoi(const char *str);
|
||||
char *mktemp(char *);
|
||||
void srandom(int seed);
|
||||
int random(void);
|
||||
|
||||
int rcmd(char **, unsigned short, char *, char *, char *, int *);
|
||||
int rresvport(int *);
|
||||
int openlog(const char *ident, int logopt, int facility);
|
||||
int syslog(int priority, const char *message, ...);
|
||||
int ttyslot(void);
|
||||
|
||||
char *getpass(const char *);
|
||||
|
||||
char *getusershell(void);
|
||||
void setpwent();
|
||||
void endpwent();
|
||||
|
||||
#include <stdio.h>
|
||||
int fclose(FILE *);
|
||||
|
||||
#endif /* SunOS4 */
|
||||
|
||||
#if SunOS == 5
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/resource.h>
|
||||
|
||||
char *getusershell(void);
|
||||
char *strtok_r(char *, const char *, char **);
|
||||
int getpriority (int which, id_t who);
|
||||
int setpriority (int which, id_t who, int prio);
|
||||
int getdtablesize (void);
|
||||
char *getusershell(void);
|
||||
void setusershell(void);
|
||||
void endusershell(void);
|
||||
|
||||
#if defined(__GNUC__)
|
||||
|
||||
int syscall(int, ...);
|
||||
int gethostname(char *, int);
|
||||
|
||||
struct timeval;
|
||||
int gettimeofday(struct timeval *tp, void *);
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(__osf__) /* OSF/1 */
|
||||
|
||||
#if 0
|
||||
/* To get type fd_set */
|
||||
#include <sys/types.h>
|
||||
#include <sys/time.h>
|
||||
|
||||
int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
|
||||
int fsync(int fildes);
|
||||
int gethostname(char *address, int address_len);
|
||||
int setreuid(int ruid, int euid);
|
||||
int ioctl(int d, unsigned long request, void * arg);
|
||||
#endif
|
||||
int flock(int fildes, int operation);
|
||||
int syscall(int, ...);
|
||||
|
||||
unsigned short htons(unsigned short hostshort);
|
||||
unsigned int htonl(unsigned int hostint);
|
||||
unsigned short ntohs(unsigned short netshort);
|
||||
unsigned int ntohl(unsigned int netint);
|
||||
|
||||
char *mktemp(char *template);
|
||||
char *getusershell(void);
|
||||
|
||||
int rcmd(char **, unsigned short, char *, char *, char *, int *);
|
||||
int rresvport (int *port);
|
||||
|
||||
#endif /* OSF/1 */
|
||||
|
||||
#if defined(__sgi)
|
||||
#include <sys/types.h>
|
||||
|
||||
char *ptsname(int fd);
|
||||
struct spwd *getspuid(uid_t);
|
||||
#endif /* IRIX */
|
||||
|
||||
#if defined(__GNUC__) && defined(_AIX) /* AIX */
|
||||
|
||||
struct timeval;
|
||||
struct timezone;
|
||||
int gettimeofday (struct timeval *Tp, void *Tzp);
|
||||
|
||||
#endif /* AIX */
|
||||
|
||||
#if defined(__GNUC__) && defined(__hpux) /* HP-UX */
|
||||
|
||||
int syscall(int, ...);
|
||||
|
||||
int vhangup(void);
|
||||
|
||||
char *ptsname(int fildes);
|
||||
|
||||
void utmpname(const char *file);
|
||||
|
||||
int innetgr(const char *netgroup, const char *machine,
|
||||
const char *user, const char *domain);
|
||||
|
||||
int dn_comp(char *exp_dn, char *comp_dn, int length,
|
||||
char **dnptrs, char **lastdnptr);
|
||||
|
||||
int res_query(char *dname, int class, int type,
|
||||
unsigned char *answer, int anslen);
|
||||
|
||||
int dn_expand(char *msg, char *eomorig, char *comp_dn,
|
||||
char *exp_dn, int length);
|
||||
|
||||
int res_search(char *dname, int class, int type,
|
||||
unsigned char *answer, int anslen);
|
||||
|
||||
#endif /* HP-UX */
|
||||
|
||||
#if defined(WIN32) /* Visual C++ 4.0 (Windows95/NT) */
|
||||
|
||||
int open(const char *, int, ...);
|
||||
int close(int);
|
||||
int read(int, void *, unsigned int);
|
||||
int write(int, const void *, unsigned int);
|
||||
|
||||
#endif /* WIN32 */
|
|
@ -0,0 +1,211 @@
|
|||
/* This is an OS dependent, generated file */
|
||||
|
||||
|
||||
#ifndef __ROKEN_H__
|
||||
#define __ROKEN_H__
|
||||
|
||||
/* -*- C -*- */
|
||||
/*
|
||||
* Copyright (c) 1995 - 2000 Kungliga Tekniska Högskolan
|
||||
* (Royal Institute of Technology, Stockholm, Sweden).
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* 3. Neither the name of the Institute nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/* $Id: roken.h,v 1.1.1.1 2000/06/16 19:18:30 thorpej Exp $ */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
#include <signal.h>
|
||||
#include <sys/param.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/uio.h>
|
||||
#include <grp.h>
|
||||
#include <sys/stat.h>
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <netdb.h>
|
||||
#include <syslog.h>
|
||||
#include <fcntl.h>
|
||||
#include <errno.h>
|
||||
#include <err.h>
|
||||
#include <termios.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/time.h>
|
||||
#include <time.h>
|
||||
|
||||
#include <paths.h>
|
||||
|
||||
|
||||
#define ROKEN_LIB_FUNCTION
|
||||
|
||||
#include <roken-common.h>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
int asnprintf (char **ret, size_t max_sz, const char *format, ...)
|
||||
__attribute__ ((format (printf, 3, 4)));
|
||||
|
||||
int vasnprintf (char **ret, size_t max_sz, const char *format, va_list ap)
|
||||
__attribute__((format (printf, 3, 0)));
|
||||
|
||||
|
||||
char * strndup(const char *old, size_t sz);
|
||||
|
||||
char * strlwr(char *);
|
||||
|
||||
size_t strnlen(const char*, size_t);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
char * strupr(char *);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#include <pwd.h>
|
||||
struct passwd *k_getpwnam (const char *user);
|
||||
struct passwd *k_getpwuid (uid_t uid);
|
||||
|
||||
const char *get_default_username (void);
|
||||
|
||||
|
||||
|
||||
|
||||
int mkstemp(char *);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
time_t tm2time (struct tm tm, int local);
|
||||
|
||||
int unix_verify_user(char *user, char *password);
|
||||
|
||||
void mini_inetd (int port);
|
||||
|
||||
int roken_concat (char *s, size_t len, ...);
|
||||
|
||||
size_t roken_mconcat (char **s, size_t max_len, ...);
|
||||
|
||||
int roken_vconcat (char *s, size_t len, va_list args);
|
||||
|
||||
size_t roken_vmconcat (char **s, size_t max_len, va_list args);
|
||||
|
||||
ssize_t net_write (int fd, const void *buf, size_t nbytes);
|
||||
|
||||
ssize_t net_read (int fd, void *buf, size_t nbytes);
|
||||
|
||||
int issuid(void);
|
||||
|
||||
|
||||
int get_window_size(int fd, struct winsize *);
|
||||
|
||||
|
||||
|
||||
extern const char *__progname;
|
||||
|
||||
extern char **environ;
|
||||
|
||||
struct hostent *
|
||||
getipnodebyname (const char *name, int af, int flags, int *error_num);
|
||||
|
||||
struct hostent *
|
||||
getipnodebyaddr (const void *src, size_t len, int af, int *error_num);
|
||||
|
||||
void
|
||||
freehostent (struct hostent *h);
|
||||
|
||||
struct hostent *
|
||||
copyhostent (const struct hostent *h);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
int
|
||||
getnameinfo_verified(const struct sockaddr *sa, socklen_t salen,
|
||||
char *host, size_t hostlen,
|
||||
char *serv, size_t servlen,
|
||||
int flags);
|
||||
|
||||
int
|
||||
roken_getaddrinfo_hostspec(const char *, int, struct addrinfo **);
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* kludges and such
|
||||
*/
|
||||
|
||||
int roken_gethostby_setup(const char*, const char*);
|
||||
struct hostent* roken_gethostbyname(const char*);
|
||||
struct hostent* roken_gethostbyaddr(const void*, size_t, int);
|
||||
|
||||
#define roken_getservbyname(x,y) getservbyname(x,y)
|
||||
|
||||
#define roken_openlog(a,b,c) openlog(a,b,c)
|
||||
|
||||
void set_progname(char *argv0);
|
||||
|
||||
#endif /* __ROKEN_H__ */
|
|
@ -0,0 +1,5 @@
|
|||
char *heimdal_long_version = "@(#)$Version: heimdal-0.2t by root on blaha.blahopp (i386-unknown-netbsdelf1.4X) Thu May 18 05:00:28 CEST 2000 $";
|
||||
char *heimdal_version = "heimdal-0.2t";
|
||||
|
||||
char *krb4_long_version = "@(#)$Version: krb4-1.0.1 by root on pezen.pdc.kth.se (i386-unknown-netbsd1.4Y) Fri Jun 2 02:39:36 CEST 2000 $";
|
||||
char *krb4_version = "krb4-1.0.1";
|
Loading…
Reference in New Issue