.github
CMakeModules
dist
externals
FidelityFX-FSR
SDL
Vulkan-Headers
cmake-modules
cpp-httplib
cubeb
discord-rpc
dynarmic
ffmpeg
find-modules
getopt
glad
inih
libressl
crypto
include
compat
arpa
inet.h
nameser.h
machine
netinet
sys
dirent.h
dirent_msvc.h
endian.h
err.h
fcntl.h
limits.h
netdb.h
poll.h
pthread.h
readpassphrase.h
resolv.h
stdio.h
stdlib.h
string.h
syslog.h
time.h
unistd.h
win32netcompat.h
openssl
CMakeLists.txt
pqueue.h
tls.h
ssl
tls
.gitignore
CMakeLists.txt
COPYING
ChangeLog
FindLibreSSL.cmake
INSTALL
README.md
README.windows
VERSION
cert.pem
cmake_export_symbol.cmake
ltmain.sh
openssl.cnf
tap-driver.sh
test-driver
x509v3.cnf
libusb
mbedtls
microprofile
opus
sirit
soundtouch
xbyak
CMakeLists.txt
patches
src
CMakeLists.txt
LICENSE
README.md
license.txt
16 lines
221 B
C
16 lines
221 B
C
|
|
/*
|
||
|
|
* Public domain
|
||
|
|
* arpa/inet.h compatibility shim
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef _WIN32
|
||
|
|
#include_next <arpa/inet.h>
|
||
|
|
#else
|
||
|
|
#include <win32netcompat.h>
|
||
|
|
|
||
|
|
#ifndef AI_ADDRCONFIG
|
||
|
|
#define AI_ADDRCONFIG 0x00000400
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|