2023-01-28 05:37:20 +08:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2021-05-25 02:54:41 +08:00
|
|
|
|
|
|
|
package wgengine
|
|
|
|
|
|
|
|
import (
|
2022-12-10 07:12:20 +08:00
|
|
|
"github.com/tailscale/wireguard-go/device"
|
2021-05-25 02:54:41 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// iOS has a very restrictive memory limit on network extensions.
|
|
|
|
// Reduce the maximum amount of memory that wireguard-go can allocate
|
|
|
|
// to avoid getting killed.
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
device.QueueStagedSize = 64
|
|
|
|
device.QueueOutboundSize = 64
|
|
|
|
device.QueueInboundSize = 64
|
|
|
|
device.QueueHandshakeSize = 64
|
|
|
|
device.PreallocatedBuffersPerPool = 64
|
|
|
|
}
|