diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-10-01 16:02:55 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-10-01 16:30:07 +0200 |
commit | 327024a1a87e3a43d8ed280f56a57fdf7daa1c67 (patch) | |
tree | 3532edb36e5359816f5c114d632e4c2f331ba583 /app/tools/libwg-go/src | |
parent | d9706e542a3fb12e35c6925eaa326fb1f2db0188 (diff) |
Update gradle and external deps
Diffstat (limited to 'app/tools/libwg-go/src')
-rw-r--r-- | app/tools/libwg-go/src/git.zx2c4.com/wireguard-go/queueconstants.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/tools/libwg-go/src/git.zx2c4.com/wireguard-go/queueconstants.go b/app/tools/libwg-go/src/git.zx2c4.com/wireguard-go/queueconstants.go new file mode 100644 index 00000000..b31dcfa5 --- /dev/null +++ b/app/tools/libwg-go/src/git.zx2c4.com/wireguard-go/queueconstants.go @@ -0,0 +1,16 @@ +/* SPDX-License-Identifier: GPL-2.0 + * + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. + */ + +package main + +/* Reduce memory consumption for Android */ + +const ( + QueueOutboundSize = 1024 + QueueInboundSize = 1024 + QueueHandshakeSize = 1024 + MaxSegmentSize = 2200 + PreallocatedBuffersPerPool = 4096 +) |