summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/structs.go b/structs.go
index 2d797eb..24ab901 100644
--- a/structs.go
+++ b/structs.go
@@ -12,7 +12,7 @@ var me Host
type Host struct {
hostname string // mirrors
domainname string // kernel.org
- fqdn string // mirrors.kernel.org
+ // fqdn string // mirrors.kernel.org
dnsTTL int // Recheck DNS is working every TTL (in seconds)
user string // name of the user
ipmap map[string]*IPtype // the current ip addresses
@@ -23,6 +23,10 @@ type Host struct {
tab *gui.Node // the main dns tab
notes *gui.Node // using this to put notes here
output *gui.Node // Textbox for dumping output
+ uid *gui.Node // user
+ fqdn *gui.Node // display the full hostname
+ IPv4 *gui.Node // show valid IPv4 addresses
+ IPv6 *gui.Node // show valid IPv6 addresses
}
type IPtype struct {