summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-06 17:51:41 -0600
committerJeff Carr <[email protected]>2024-01-06 17:51:41 -0600
commit1191d1548470a7ed1049f1d78de6f17b77e0d36d (patch)
treeb79d2773e77909b00b12c9250ea074a89df2b558
parenta385734bc948b6cae6c5dd9a5fc48abaca4a040f (diff)
purge years of old test code
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--linuxstatus/old/bash.go (renamed from bash.go)0
-rw-r--r--linuxstatus/old/dynamic-dns-update.go (renamed from dynamic-dns-update.go)0
-rw-r--r--linuxstatus/old/fsnotify.go (renamed from fsnotify.go)2
-rw-r--r--linuxstatus/old/nsupdate.go (renamed from nsupdate.go)5
-rw-r--r--linuxstatus/old/rtnetlink.go (renamed from rtnetlink.go)0
-rw-r--r--linuxstatus/old/unix.go (renamed from unix.go)0
-rw-r--r--linuxstatus/proc.go (renamed from proc.go)4
-rw-r--r--net.go91
8 files changed, 6 insertions, 96 deletions
diff --git a/bash.go b/linuxstatus/old/bash.go
index 7143c1f..7143c1f 100644
--- a/bash.go
+++ b/linuxstatus/old/bash.go
diff --git a/dynamic-dns-update.go b/linuxstatus/old/dynamic-dns-update.go
index 371a374..371a374 100644
--- a/dynamic-dns-update.go
+++ b/linuxstatus/old/dynamic-dns-update.go
diff --git a/fsnotify.go b/linuxstatus/old/fsnotify.go
index cf38b50..ba40c94 100644
--- a/fsnotify.go
+++ b/linuxstatus/old/fsnotify.go
@@ -2,6 +2,7 @@ package main
// Watches for changes to a directory. Works cross-platform
+/*
import (
"go.wit.com/log"
"github.com/fsnotify/fsnotify"
@@ -77,3 +78,4 @@ func fsnotifyNetworkInterfaceChanges() error {
}
}
+*/
diff --git a/nsupdate.go b/linuxstatus/old/nsupdate.go
index add2c94..635de4c 100644
--- a/nsupdate.go
+++ b/linuxstatus/old/nsupdate.go
@@ -6,9 +6,6 @@
package main
import (
- "os"
-
- "go.wit.com/log"
)
// ./go-nsupdate \
@@ -16,6 +13,7 @@ import (
// --tsig-secret="OWh5/ZHIyaz7B8J9m9ZDqZ8448Pke0PTpkYbZmFcOf5a6rEzgmcwrG91u1BHi1/4us+mKKEobDPLw1x6sD+ZJw==" \
// -i eno2 farm001.lab.wit.com
+/*
func nsupdate() {
var tsigSecret string
log.Log(NET, "nsupdate() START")
@@ -33,3 +31,4 @@ func nsupdate() {
}
}
}
+*/
diff --git a/rtnetlink.go b/linuxstatus/old/rtnetlink.go
index 29f1153..29f1153 100644
--- a/rtnetlink.go
+++ b/linuxstatus/old/rtnetlink.go
diff --git a/unix.go b/linuxstatus/old/unix.go
index b09481a..b09481a 100644
--- a/unix.go
+++ b/linuxstatus/old/unix.go
diff --git a/proc.go b/linuxstatus/proc.go
index adc8576..b7720e0 100644
--- a/proc.go
+++ b/linuxstatus/proc.go
@@ -1,4 +1,4 @@
-package main
+package linuxstatus
import (
"io/ioutil"
@@ -10,7 +10,7 @@ import (
"go.wit.com/log"
)
-func getProcessNameByPort(port int) string {
+func GetProcessNameByPort(port int) string {
// Convert port to hex string
portHex := strconv.FormatInt(int64(port), 16)
diff --git a/net.go b/net.go
deleted file mode 100644
index a3ebefd..0000000
--- a/net.go
+++ /dev/null
@@ -1,91 +0,0 @@
-// This creates a simple hello world window
-package main
-
-import (
- // "log"
- "net"
- "strings"
-
- "go.wit.com/log"
-)
-
-func IsIPv6(address string) bool {
- return strings.Count(address, ":") >= 2
-}
-
-func (t *IPtype) IsReal() bool {
- if (t.ip.IsPrivate() || t.ip.IsLoopback() || t.ip.IsLinkLocalUnicast()) {
- log.Log(NET, "\t\tIP is Real = false")
- return false
- } else {
- log.Log(NET, "\t\tIP is Real = true")
- return true
- }
-}
-
-func IsReal(ip *net.IP) bool {
- if (ip.IsPrivate() || ip.IsLoopback() || ip.IsLinkLocalUnicast()) {
- log.Log(NET, "\t\tIP is Real = false")
- return false
- } else {
- log.Log(NET, "\t\tIP is Real = true")
- return true
- }
-}
-
-/*
- These are the real IP address you have been
- given from DHCP
-*/
-func dhcpAAAA() []string {
- var aaaa []string
-
- for s, t := range me.ipmap {
- if (t.IsReal()) {
- if (t.ipv6) {
- aaaa = append(aaaa, s)
- }
- }
- }
- return aaaa
-}
-
-func realA() []string {
- var a []string
-
- for s, t := range me.ipmap {
- if (t.IsReal()) {
- if (t.ipv4) {
- a = append(a, s)
- }
- }
- }
- return a
-}
-
-func checkDNS() (map[string]*IPtype, map[string]*IPtype) {
- var ipv4s map[string]*IPtype
- var ipv6s map[string]*IPtype
-
- ipv4s = make(map[string]*IPtype)
- ipv6s = make(map[string]*IPtype)
-
- for s, t := range me.ipmap {
- i := t.iface
- ipt := "IPv4"
- if (t.ipv6) {
- ipt = "IPv6"
- }
- if (t.IsReal()) {
- log.Info("\tIP is Real ", ipt, i.Index, i.Name, s)
- if (t.ipv6) {
- ipv6s[s] = t
- } else {
- ipv4s[s] = t
- }
- } else {
- log.Info("\tIP is not Real", ipt, i.Index, i.Name, s)
- }
- }
- return ipv6s, ipv4s
-}