summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-03-25 08:09:34 -0500
committerJeff Carr <[email protected]>2023-03-25 08:09:34 -0500
commit8e2f94c4acb623c70aaaf0178e2ba67a2f6e4ce9 (patch)
treeb64d64ecb015481c83dcbe5bb434f1d9e3a21dcc /main.go
parent0b26e5f1ca6807a1bc3fc6c365d449c5f6a4a866 (diff)
add interfaces to the dropdown menu
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/main.go b/main.go
index e2a11b5..c1d4e23 100644
--- a/main.go
+++ b/main.go
@@ -40,7 +40,7 @@ func main() {
log("Toolkit = ", args.Toolkit)
// gui.InitPlugins([]string{"andlabs"})
- gui.SetDebug(args.GuiDebug)
+ gui.SetDebug(true)
gui.Main(initGUI)
}
@@ -65,7 +65,7 @@ func checkNetworkChanges() {
// Run this every once and a while
func dnsTTL() {
- output("FQDN = " + me.fqdn.GetText() + "\n", true)
+ output("FQDN = " + me.fqdn.GetText() + "\n", false)
getHostname()
scanInterfaces()
for i, t := range me.ifmap {
@@ -75,6 +75,8 @@ func dnsTTL() {
aaaa = realAAAA()
for _, s := range aaaa {
output("my actual AAAA = " + s + "\n", true)
+ me.IPv6.AddText(s)
+ me.IPv6.SetText(s)
}
// loggo()
}