2021-09-05 14:00:43 +00:00
|
|
|
//go:build !android && !ios && !windows
|
2021-02-22 17:47:41 +00:00
|
|
|
// +build !android,!ios,!windows
|
2019-03-03 04:20:13 +00:00
|
|
|
|
2019-01-02 00:55:51 +00:00
|
|
|
/* SPDX-License-Identifier: MIT
|
2018-10-01 14:11:31 +00:00
|
|
|
*
|
2021-01-28 16:52:15 +00:00
|
|
|
* Copyright (C) 2017-2021 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
|
|
|
|
|
|
|
const (
|
2021-01-27 17:13:53 +00:00
|
|
|
QueueStagedSize = 128
|
2018-10-01 14:11:31 +00:00
|
|
|
QueueOutboundSize = 1024
|
|
|
|
QueueInboundSize = 1024
|
|
|
|
QueueHandshakeSize = 1024
|
|
|
|
MaxSegmentSize = (1 << 16) - 1 // largest possible UDP datagram
|
|
|
|
PreallocatedBuffersPerPool = 0 // Disable and allow for infinite memory growth
|
|
|
|
)
|