From 2444738aa9c814bfd0aa3266f68a050335d64a16 Mon Sep 17 00:00:00 2001 From: Mark Pashmfouroush Date: Tue, 28 May 2024 16:23:30 +0100 Subject: [PATCH] update readme Signed-off-by: Mark Pashmfouroush --- README.md | 1 + example_config.json | 3 ++- go.mod | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9d0a4a8c8..9190af8d3 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ FLAGS --cache-dir STRING directory to store generated profiles --tun-experimental enable tun interface (experimental) --fwmark UINT set linux firewall mark for tun mode (default: 4981) + --reserved STRING override wireguard reserved value (format: '1,2,3') --wgconf STRING path to a normal wireguard config -c, --config STRING path to config file --version displays version number diff --git a/example_config.json b/example_config.json index 76830149d..89eb94cc2 100644 --- a/example_config.json +++ b/example_config.json @@ -12,5 +12,6 @@ "cache-dir": "", "tun-experimental": false, "fwmark": "0x1375", - "wgconf": "" + "wgconf": "", + "reserved": "" } diff --git a/go.mod b/go.mod index 3266d9359..285de1ca0 100644 --- a/go.mod +++ b/go.mod @@ -13,7 +13,6 @@ require ( github.com/frankban/quicktest v1.14.6 github.com/go-ini/ini v1.67.0 github.com/google/go-cmp v0.6.0 - github.com/hashicorp/golang-lru v1.0.2 github.com/peterbourgon/ff/v4 v4.0.0-alpha.4 github.com/quic-go/quic-go v0.43.1 github.com/refraction-networking/utls v1.3.3 @@ -49,6 +48,7 @@ require ( github.com/google/btree v1.1.2 // indirect github.com/google/pprof v0.0.0-20211214055906-6f57359322fd // indirect github.com/grafov/m3u8 v0.0.0-20171211212457-6ab8f28ed427 // indirect + github.com/hashicorp/golang-lru v1.0.2 // indirect github.com/juju/ratelimit v1.0.2 // indirect github.com/klauspost/compress v1.16.7 // indirect github.com/kr/pretty v0.3.1 // indirect