diff options
Diffstat (limited to 'device/queueconstants_ios.go')
-rw-r--r-- | device/queueconstants_ios.go | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/device/queueconstants_ios.go b/device/queueconstants_ios.go new file mode 100644 index 0000000..589b0aa --- /dev/null +++ b/device/queueconstants_ios.go @@ -0,0 +1,18 @@ +// +build ios + +/* SPDX-License-Identifier: MIT + * + * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved. + */ + +package device + +/* Fit within memory limits for iOS's Network Extension API, which has stricter requirements */ + +const ( + QueueOutboundSize = 1024 + QueueInboundSize = 1024 + QueueHandshakeSize = 1024 + MaxSegmentSize = 1700 + PreallocatedBuffersPerPool = 1024 +) |