Ver código fonte

tools: update submodules

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
master
Jason A. Donenfeld 5 anos atrás
pai
commit
373a5f18d6
3 arquivos alterados com 8 adições e 6 exclusões
  1. +6
    -4
      app/tools/libwg-go/src/tun/api-android.go
  2. +1
    -1
      app/tools/wireguard
  3. +1
    -1
      app/tools/wireguard-go

+ 6
- 4
app/tools/libwg-go/src/tun/api-android.go Ver arquivo

@@ -11,11 +11,13 @@ import (
)

func CreateTUNFromFD(tun_fd int) (TUNDevice, string, error) {
file := os.NewFile(uintptr(tun_fd), "/dev/tun")
tun := &nativeTun{
fd: os.NewFile(uintptr(tun_fd), "/dev/tun"),
events: make(chan TUNEvent, 5),
errors: make(chan error, 5),
nopi: true,
tunFile: file,
fd: file.Fd(),
events: make(chan TUNEvent, 5),
errors: make(chan error, 5),
nopi: true,
}
var err error
tun.fdCancel, err = rwcancel.NewRWCancel(tun_fd)


+ 1
- 1
app/tools/wireguard

@@ -1 +1 @@
Subproject commit 36c4f1047ed51d7dd4128ff4ceb837a56470646c
Subproject commit abc9fae9e2b93e276e9734fe6e784947165c30e0

+ 1
- 1
app/tools/wireguard-go

@@ -1 +1 @@
Subproject commit 5d6083df7e0399d9cbb47a9dc0b227fd86ccffbb
Subproject commit 8be1fc9c00407b85073ed66d95f12202df674ccb

Carregando…
Cancelar
Salvar