summaryrefslogtreecommitdiff
path: root/gui.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-06 14:57:51 -0600
committerJeff Carr <[email protected]>2024-01-06 14:57:51 -0600
commit5dee2af78434191a27987acfb02902a11f81067c (patch)
tree43e9877f72f3a575c68c3e6648ab4928ecf511cb /gui.go
parentba3d5a3cb24429692a1d799e73a9d53cc798212e (diff)
old window is nearly deprecated
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'gui.go')
-rw-r--r--gui.go15
1 files changed, 5 insertions, 10 deletions
diff --git a/gui.go b/gui.go
index c988ab4..5b48039 100644
--- a/gui.go
+++ b/gui.go
@@ -47,19 +47,19 @@ func detailsTab(title string) {
grid.NewLabel("DEPRECATED")
grid.NewLabel("NS records =")
- me.NSrr = grid.NewLabel("NS RR's")
+ grid.NewLabel("DEPRECATED")
grid.NewLabel("UID =")
grid.NewLabel("DEPRECATED")
grid.NewLabel("Current IPv4 =")
- me.IPv4 = grid.NewLabel("?")
+ grid.NewLabel("DEPRECATED")
grid.NewLabel("Current IPv6 =")
- me.IPv6 = grid.NewLabel("?")
+ grid.NewLabel("DEPRECATED")
grid.NewLabel("Working Real IPv6 =")
- me.workingIPv6 = grid.NewLabel("?")
+ grid.NewLabel("?")
grid.NewLabel("interfaces =")
me.Interfaces = grid.NewCombobox("Interfaces")
@@ -150,7 +150,7 @@ func missingAAAA() string {
// it just updates the GUI
func displayDNS() string {
var aaaa []string
- aaaa = dhcpAAAA() // your AAAA records right now
+ aaaa = append(aaaa, "blah", "more")
// h := me.hostname
var all string
var broken string = "unknown"
@@ -166,11 +166,6 @@ func displayDNS() string {
}
}
}
- all = sortLines(all)
- if (me.workingIPv6.S != all) {
- log.Log(NOW, "workingIPv6.SetText() to:", all)
- me.workingIPv6.SetText(all)
- }
var a []string
a = realA()