1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-18 01:33:00 +03:00

BridgeUnix.c: enable local bridge function on all BSD systems

This commit is contained in:
Davide Beatrici 2018-09-28 20:56:10 +02:00
parent 3110ca530e
commit aee6084b19

View File

@ -270,12 +270,10 @@ bool IsEthSupported()
#if defined(UNIX_LINUX)
return IsEthSupportedLinux();
#elif defined(UNIX_BSD)
return true;
#elif defined(UNIX_SOLARIS)
return IsEthSupportedSolaris();
#elif defined(BRIDGE_PCAP)
return true;
#elif defined(BRIDGE_BPF)
return true;
#else
return false;
#endif