2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2021-05-24 19:54:41 +01:00
|
|
|
|
|
|
|
package wgengine
|
|
|
|
|
|
|
|
import (
|
2022-12-09 23:12:20 +00:00
|
|
|
"github.com/tailscale/wireguard-go/device"
|
2021-05-24 19:54:41 +01: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
|
|
|
|
}
|