diff options
| author | Jeff Carr <[email protected]> | 2023-12-28 09:43:45 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-12-28 09:43:45 -0600 |
| commit | 88fb976119006a8b3e3ce806c22f4f9418850f3c (patch) | |
| tree | 620f2b162fe2a296efa693810d15b97dc40ef6af /net.go | |
| parent | e697a29bab5806834106680892cd6efbe46df506 (diff) | |
Detect that a VPN is needed
IPv6() returns true if it's working
display duration
a 'DNS Lookup Status' window
actual dig results
display status and failure counters
count lookup failures and successes
add TCP dns lookup
logic to test if dns is working at all
add DNS over HTTPS
cloudflare new & update kind of working
holy shit, go.wit.com finally works with git mod tidy
working, but cloudflare api stuff is broken
AAAA '(none)' logic detection is better
cloudflare control panel
display the working real AAAA addresses
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'net.go')
| -rw-r--r-- | net.go | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -97,7 +97,11 @@ func checkInterface(i net.Interface) { } } -func realAAAA() []string { +/* + These are the real IP address you have been + given from DHCP +*/ +func dhcpAAAA() []string { var aaaa []string for s, t := range me.ipmap { |
