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