2019-03-03 04:20:13 +00:00
|
|
|
// +build ios
|
|
|
|
|
2019-01-02 00:55:51 +00:00
|
|
|
/* SPDX-License-Identifier: MIT
|
2018-10-01 14:11:31 +00:00
|
|
|
*
|
2019-01-02 00:55:51 +00:00
|
|
|
* Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
|
2018-10-01 14:11:31 +00:00
|
|
|
*/
|
|
|
|
|
2019-03-03 03:04:41 +00:00
|
|
|
package device
|
2018-10-01 14:11:31 +00:00
|
|
|
|
2019-03-03 04:20:13 +00:00
|
|
|
/* Fit within memory limits for iOS's Network Extension API, which has stricter requirements */
|
2018-10-01 14:11:31 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
QueueOutboundSize = 1024
|
|
|
|
QueueInboundSize = 1024
|
|
|
|
QueueHandshakeSize = 1024
|
2019-03-03 04:20:13 +00:00
|
|
|
MaxSegmentSize = 1700
|
|
|
|
PreallocatedBuffersPerPool = 1024
|
2018-10-01 14:11:31 +00:00
|
|
|
)
|