summaryrefslogtreecommitdiffhomepage
path: root/app/tools/libwg-go/src/queueconstants.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-10-09 18:26:21 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2018-10-09 19:46:48 +0200
commit33fd5b4634a946073930bdfcfd3189bf870e9748 (patch)
tree8c1c807fe8e051ad723019ed1a8f648304fcd568 /app/tools/libwg-go/src/queueconstants.go
parent91647978e69000e223c5f1daef89ad3d8e4ce66e (diff)
Update to go modules
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app/tools/libwg-go/src/queueconstants.go')
-rw-r--r--app/tools/libwg-go/src/queueconstants.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/tools/libwg-go/src/queueconstants.go b/app/tools/libwg-go/src/queueconstants.go
new file mode 100644
index 00000000..b31dcfa5
--- /dev/null
+++ b/app/tools/libwg-go/src/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
+)