1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-10-04 01:20:40 +03:00

Merge pull request #1679 from tickerguy/tickerguy-patch-1

BridgeUnix.c: Disable MTU changes on FreeBSD
This commit is contained in:
Ilya Shipitsin 2024-04-19 16:46:16 +02:00 committed by GitHub
commit 74f7269ef6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -805,7 +805,12 @@ bool EthIsChangeMtuSupported(ETH *e)
return false;
}
// FreeBSD seriously dislikes MTU changes; disable if compiled on that platform
#ifndef __FreeBSD__
return true;
#else
return false;
#endif
#else // defined(UNIX_LINUX) || defined(UNIX_BSD) || defined(UNIX_SOLARIS)
return false;
#endif // defined(UNIX_LINUX) || defined(UNIX_BSD) || defined(UNIX_SOLARIS)