mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-07-06 15:54:57 +03:00
Fix compile errors on OpenBSD
- <pthread.h> included for the "pthread_t" type definition. - <net/ethernet.h> include removed as the header doesn't exist. - AI_ALL and AI_V4MAPPED defined to 0 as the options don't exist.
This commit is contained in:
@ -13,6 +13,14 @@
|
||||
#include <sys/socket.h>
|
||||
#endif
|
||||
|
||||
#ifndef AI_ALL
|
||||
#define AI_ALL 0
|
||||
#endif
|
||||
|
||||
#ifndef AI_V4MAPPED
|
||||
#define AI_V4MAPPED 0
|
||||
#endif
|
||||
|
||||
static bool cache_enabled;
|
||||
|
||||
static LIST *cache;
|
||||
|
@ -13,6 +13,10 @@
|
||||
|
||||
#ifdef OS_UNIX
|
||||
#include <netinet/in.h>
|
||||
|
||||
#ifdef UNIX_OPENBSD
|
||||
#include <pthread.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// Dynamic Value
|
||||
|
Reference in New Issue
Block a user