mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-25 19:32:09 +00:00
11fa2cc383
- (djm) Fix strerror replacement for old SunOS. Based on patch from Charles Levert <charles@comm.polymtl.ca> - (djm) Seperate arc4random into seperate file and use OpenSSL's RC4 implementation.
28 lines
601 B
C
28 lines
601 B
C
#ifndef _OPENBSD_H
|
|
#define _OPENBSD_H
|
|
|
|
#include "config.h"
|
|
|
|
/* BSD function replacements */
|
|
#include "bsd-arc4random.h"
|
|
#include "bsd-bindresvport.h"
|
|
#include "bsd-rresvport.h"
|
|
#include "bsd-misc.h"
|
|
#include "bsd-strlcpy.h"
|
|
#include "bsd-strlcat.h"
|
|
#include "bsd-mktemp.h"
|
|
#include "bsd-snprintf.h"
|
|
#include "bsd-daemon.h"
|
|
#include "bsd-base64.h"
|
|
#include "bsd-sigaction.h"
|
|
#include "bsd-inet_aton.h"
|
|
#include "bsd-inet_ntoa.h"
|
|
#include "bsd-strsep.h"
|
|
|
|
/* rfc2553 socket API replacements */
|
|
#include "fake-getaddrinfo.h"
|
|
#include "fake-getnameinfo.h"
|
|
#include "fake-socket.h"
|
|
|
|
#endif /* _OPENBSD_H */
|