mirror of
https://github.com/amnezia-vpn/amneziawg-go.git
synced 2025-04-15 13:36:55 +02:00
Do not hard code MTU default
This commit is contained in:
parent
ac9912345b
commit
ab875491c0
1 changed files with 2 additions and 2 deletions
|
@ -259,8 +259,8 @@ func NewDevice(tun TUNDevice, logger *Logger) *Device {
|
|||
device.tun.device = tun
|
||||
mtu, err := device.tun.device.MTU()
|
||||
if err != nil {
|
||||
logger.Error.Println("Trouble determining MTU, assuming 1420:", err)
|
||||
mtu = 1420
|
||||
logger.Error.Println("Trouble determining MTU, assuming default:", err)
|
||||
mtu = DefaultMTU
|
||||
}
|
||||
device.tun.mtu = int32(mtu)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue