aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/version/debugging_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'version/debugging_linux.go')
-rw-r--r--version/debugging_linux.go35
1 files changed, 0 insertions, 35 deletions
diff --git a/version/debugging_linux.go b/version/debugging_linux.go
deleted file mode 100644
index ddea4242..00000000
--- a/version/debugging_linux.go
+++ /dev/null
@@ -1,35 +0,0 @@
-/* SPDX-License-Identifier: MIT
- *
- * Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
- */
-
-package version
-
-import (
- "bytes"
- "fmt"
-
- "golang.org/x/sys/unix"
-)
-
-// For testing the updater package from linux. Debug stuff only.
-
-func utsToStr(u [65]byte) string {
- i := bytes.IndexByte(u[:], 0)
- if i < 0 {
- return string(u[:])
- }
- return string(u[:i])
-}
-
-func OsName() string {
- var utsname unix.Utsname
- if unix.Uname(&utsname) != nil {
- return "Unix Unknown"
- }
- return fmt.Sprintf("%s %s %s", utsToStr(utsname.Sysname), utsToStr(utsname.Release), utsToStr(utsname.Version))
-}
-
-func VerifyAuthenticode(path string) bool {
- return true
-}