Compare commits

..

No commits in common. "be1e66cb0bb89aa15d043151190c0042c862cd72" and "eb554cfeb772d3ec3c9bc9612603a7c2c5681ea9" have entirely different histories.

2 changed files with 0 additions and 16 deletions

13
gui.go
View File

@ -61,18 +61,6 @@ func addDNSTab(window *gui.Node, title string) {
s := tb.GetText()
log("text =", s)
}
<<<<<<< HEAD
g2.NewButton("dump Host.ifmap", func () {
for i, t := range me.ifmap {
log("int =", i, "name =", t.name, t.iface)
}
})
g2.NewButton("checkDNS()", func () {
me.checkDNS()
})
g2.NewButton("getHostname()", func () {
getHostname()
=======
g2.NewButton("Network Interfaces", func () {
for i, t := range me.ifmap {
log("name =", t.iface.Name)
@ -93,7 +81,6 @@ func addDNSTab(window *gui.Node, title string) {
})
g2.NewButton("checkDNS()", func () {
checkDNS()
>>>>>>> eb554cfeb772d3ec3c9bc9612603a7c2c5681ea9
})
g2.NewButton("os.User()", func () {
user, _ := user.Current()

3
net.go
View File

@ -91,8 +91,6 @@ func checkInterface(i net.Interface) {
}
}
<<<<<<< HEAD
=======
func realAAAA() []string {
var aaaa []string
@ -106,7 +104,6 @@ func realAAAA() []string {
return aaaa
}
>>>>>>> eb554cfeb772d3ec3c9bc9612603a7c2c5681ea9
func checkDNS() (map[string]*IPtype, map[string]*IPtype) {
var ipv4s map[string]*IPtype
var ipv6s map[string]*IPtype