mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-17 15:44:36 +00:00
e991e3cf22
openbsd-compat/openbsd-compat.h ] Add inet_ntop.c inet_ntop.h back in. Needed for sshconnect.c [sshconnect.c] fix INET6_ADDRSTRLEN for non IPv6 machines [configure.in] make tests with missing libraries fail patch by Wendy Palm <wendyp@cray.com> Added openbsd-compat/bsd-cray.h. Selective patches from William L. Jones <jones@mail.utexas.edu>
46 lines
958 B
C
46 lines
958 B
C
/* $Id: openbsd-compat.h,v 1.13 2001/08/07 22:29:09 tim Exp $ */
|
|
|
|
#ifndef _OPENBSD_H
|
|
#define _OPENBSD_H
|
|
|
|
#include "config.h"
|
|
|
|
/* OpenBSD function replacements */
|
|
#include "bindresvport.h"
|
|
#include "getcwd.h"
|
|
#include "realpath.h"
|
|
#include "rresvport.h"
|
|
#include "strlcpy.h"
|
|
#include "strlcat.h"
|
|
#include "strmode.h"
|
|
#include "mktemp.h"
|
|
#include "daemon.h"
|
|
#include "dirname.h"
|
|
#include "base64.h"
|
|
#include "sigact.h"
|
|
#include "inet_ntoa.h"
|
|
#include "inet_ntop.h"
|
|
#include "strsep.h"
|
|
#include "vis.h"
|
|
#include "setproctitle.h"
|
|
#include "getgrouplist.h"
|
|
#include "glob.h"
|
|
#include "readpassphrase.h"
|
|
#include "getopt.h"
|
|
|
|
/* Home grown routines */
|
|
#include "bsd-arc4random.h"
|
|
#include "bsd-misc.h"
|
|
#include "bsd-snprintf.h"
|
|
#include "bsd-waitpid.h"
|
|
|
|
/* rfc2553 socket API replacements */
|
|
#include "fake-getaddrinfo.h"
|
|
#include "fake-getnameinfo.h"
|
|
#include "fake-socket.h"
|
|
|
|
/* Routines for a single OS platform */
|
|
#include "bsd-cray.h"
|
|
|
|
#endif /* _OPENBSD_H */
|