From 4efd000bdaa9e3ad2242c3d14181c433c4e8e608 Mon Sep 17 00:00:00 2001 From: notsure2 Date: Mon, 29 May 2023 19:43:18 +0300 Subject: [PATCH] Fix config parsing of the new buffer values. --- internal/client/state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/client/state.go b/internal/client/state.go index f87c19b..4a5e0e5 100644 --- a/internal/client/state.go +++ b/internal/client/state.go @@ -87,7 +87,7 @@ func ssvToJson(ssv string) (ret []byte) { r = strings.Replace(r, `\;`, `;`, -1) return r } - unquoted := []string{"NumConn", "StreamTimeout", "KeepAlive", "UDP"} + unquoted := []string{"NumConn", "StreamTimeout", "KeepAlive", "UDP", "LoopbackTcpSendBuffer", "LoopbackTcpReceiveBuffer"} lines := strings.Split(unescape(ssv), ";") ret = []byte("{") for _, ln := range lines {