summaryrefslogtreecommitdiffhomepage
path: root/tunnel/tools/libwg-go/go.mod
diff options
context:
space:
mode:
authorMikael Magnusson <mikma@users.sourceforge.net>2021-11-20 20:03:12 +0100
committerMikael Magnusson <mikma@users.sourceforge.net>2022-06-10 22:22:06 +0200
commit295e5d7d682903ac440ca1e7ca1f27f017494c35 (patch)
treeca39ae372aa0583a5d244acfce6744f9fd669a60 /tunnel/tools/libwg-go/go.mod
parent13ab1cfe6726184ce30ebe60d2157776cc3b260d (diff)
tunnel: add gRPC over unix domain socket to the go backend
With gRPC it will be easier to extend the go backend API. In this commit the Version function is reimplemented in gRPC.
Diffstat (limited to 'tunnel/tools/libwg-go/go.mod')
-rw-r--r--tunnel/tools/libwg-go/go.mod5
1 files changed, 5 insertions, 0 deletions
diff --git a/tunnel/tools/libwg-go/go.mod b/tunnel/tools/libwg-go/go.mod
index e64d2fb1..81e25391 100644
--- a/tunnel/tools/libwg-go/go.mod
+++ b/tunnel/tools/libwg-go/go.mod
@@ -5,10 +5,15 @@ go 1.18
require (
golang.org/x/sys v0.0.0-20220513210249-45d2b4557a2a
golang.zx2c4.com/wireguard v0.0.0-20220407013110-ef5c587f782d
+ google.golang.org/grpc v1.42.0-dev.0.20211020220737-f00baa6c3c84
+ google.golang.org/protobuf v1.27.1
)
require (
+ github.com/golang/protobuf v1.5.2 // indirect
golang.org/x/crypto v0.0.0-20220516162934-403b01795ae8 // indirect
golang.org/x/net v0.0.0-20220516155154-20f960328961 // indirect
+ golang.org/x/text v0.3.7 // indirect
golang.zx2c4.com/wintun v0.0.0-20211104114900-415007cec224 // indirect
+ google.golang.org/genproto v0.0.0-20210722135532-667f2b7c528f // indirect
)