Created
May 7, 2015 06:38
-
-
Save dcb9/6d6ee4701e77e009eeeb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"strings" | |
) | |
type IPAddr [4]byte | |
// TODO: Add a "String() string" method to IPAddr. | |
func (ipAddr IPAddr) String()string { | |
var ipStr string | |
for i := 0; i < len(ipAddr) ; i++ { | |
ip := fmt.Sprintf("%d", ipAddr[i]) | |
ipStr += ip + "." | |
} | |
ipStr = strings.Trim(ipStr, ".") | |
return ipStr | |
} | |
func main() { | |
addrs := map[string]IPAddr{ | |
"loopback": {127, 0, 0, 1}, | |
"googleDNS": {8, 8, 8, 8}, | |
} | |
for n, a := range addrs { | |
fmt.Printf("%v: %v\n", n, a) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment