Resolve host for NetAddressFromString(). Test fix.

This commit is contained in:
Jae Kwon 2015-04-23 14:56:19 -07:00
parent f1703249ff
commit fcc26d7355
6 changed files with 39 additions and 19 deletions

View File

@ -170,7 +170,7 @@ func readReflect(rv reflect.Value, rt reflect.Type, r io.Reader, n *int64, err *
}
crt, ok := typeInfo.ByteToType[typeByte]
if !ok {
*err = errors.New(Fmt("Unexpected type byte %X for type %v", typeByte, crt))
*err = errors.New(Fmt("Unexpected type byte %X for type %v", typeByte, rt))
return
}
crv := reflect.New(crt).Elem()

View File

@ -86,6 +86,7 @@ func main() {
if err != nil {
panic(Fmt("Error creating barak rootDir: %v", err))
}
barak.registries = options.Registries
// Write pid to file.
err = AtomicWriteFile(barak.rootDir+"/pidfile", []byte(Fmt("%v", barak.pid)))

View File

@ -1,9 +1,12 @@
{
"ListenAddress": "0.0.0.0:46660",
"ListenAddress": "0.0.0.0:46660",
"Validators": [
{
"VotingPower": 1,
"PubKey": [1,"3A2C5C341FFC1D5F7AB518519FF8289D3BFAB82DFD6E167B926FAD72C1BF10F8"]
}
]
{
"VotingPower": 1,
"PubKey": [1,"3A2C5C341FFC1D5F7AB518519FF8289D3BFAB82DFD6E167B926FAD72C1BF10F8"]
}
],
"Registries": [
"http://navytoad.chaintest.net:46660"
]
}

View File

@ -1,9 +1,12 @@
{
"ListenAddress": "0.0.0.0:46661",
"ListenAddress": "0.0.0.0:46661",
"Validators": [
{
"VotingPower": 1,
"PubKey": [1,"3A2C5C341FFC1D5F7AB518519FF8289D3BFAB82DFD6E167B926FAD72C1BF10F8"]
}
]
{
"VotingPower": 1,
"PubKey": [1,"3A2C5C341FFC1D5F7AB518519FF8289D3BFAB82DFD6E167B926FAD72C1BF10F8"]
}
],
"Registries": [
"http://navytoad.chaintest.net:46660"
]
}

View File

@ -1,9 +1,12 @@
{
"ListenAddress": "0.0.0.0:46662",
"ListenAddress": "0.0.0.0:46662",
"Validators": [
{
"VotingPower": 1,
"PubKey": [1,"3A2C5C341FFC1D5F7AB518519FF8289D3BFAB82DFD6E167B926FAD72C1BF10F8"]
}
]
{
"VotingPower": 1,
"PubKey": [1,"3A2C5C341FFC1D5F7AB518519FF8289D3BFAB82DFD6E167B926FAD72C1BF10F8"]
}
],
"Registries": [
"http://navytoad.chaintest.net:46660"
]
}

View File

@ -28,12 +28,22 @@ func NewNetAddress(addr net.Addr) *NetAddress {
return NewNetAddressIPPort(ip, port)
}
// Also resolves the host if host is not an IP.
func NewNetAddressString(addr string) *NetAddress {
host, portStr, err := net.SplitHostPort(addr)
if err != nil {
panic(err)
}
ip := net.ParseIP(host)
if ip == nil {
if len(host) > 0 {
ips, err := net.LookupIP(host)
if err != nil {
panic(err)
}
ip = ips[0]
}
}
port, err := strconv.ParseUint(portStr, 10, 16)
if err != nil {
panic(err)