diff options
| author | Jeff Carr <[email protected]> | 2023-03-09 14:21:34 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-03-09 14:21:34 -0600 |
| commit | 0b26e5f1ca6807a1bc3fc6c365d449c5f6a4a866 (patch) | |
| tree | 008f9f3c5a54f21874c0ff4dc5dfd0daab7b7c64 /structs.go | |
| parent | 3ce3a39226bd6c0e738cdf76a55b05be1bad3cc3 (diff) | |
hostname actually set
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 { |
