mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-23 01:49:53 +03:00
Cedar: fix compilation on FreeBSD, broken by #337
This commit is contained in:
parent
2b855c8db7
commit
7612c2bf5d
@ -9758,7 +9758,7 @@ bool CiReadSettingFromCfg(CLIENT *c, FOLDER *root)
|
||||
UNIX_VLAN *uv;
|
||||
|
||||
// Create a Tap for MacOS X
|
||||
if (UnixVLanCreate(CLIENT_MACOS_TAP_NAME, NULL) == false)
|
||||
if (UnixVLanCreate(CLIENT_MACOS_TAP_NAME, NULL, !c->Config.NicDownOnDisconnect) == false)
|
||||
{
|
||||
// Fail (abort)
|
||||
CLog(c, "LC_TAP_NOT_FOUND");
|
||||
|
@ -672,11 +672,11 @@ void UnixCloseTapDevice(int fd)
|
||||
{
|
||||
}
|
||||
|
||||
int UnixCreateTapDeviceEx(char *name, char *prefix, UCHAR *mac_address)
|
||||
int UnixCreateTapDeviceEx(char *name, char *prefix, UCHAR *mac_address, bool create_up)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
int UnixCreateTapDevice(char *name, UCHAR *mac_address)
|
||||
int UnixCreateTapDevice(char *name, UCHAR *mac_address, bool create_up)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user