drop redundant else
This commit is contained in:
parent
64b793c3da
commit
dbec5b7c9c
1 changed files with 3 additions and 4 deletions
|
@ -97,13 +97,12 @@ func IP2Ints(pip net.IP) (int, int64, int64, error) {
|
|||
|
||||
if pip4 != nil {
|
||||
ip_nw32 := binary.BigEndian.Uint32(pip4)
|
||||
|
||||
return 4, uint2int(uint64(ip_nw32)), uint2int(ip_sfx), nil
|
||||
} else if pip16 != nil {
|
||||
}
|
||||
if pip16 != nil {
|
||||
ip_nw = binary.BigEndian.Uint64(pip16[0:8])
|
||||
ip_sfx = binary.BigEndian.Uint64(pip16[8:16])
|
||||
return 16, uint2int(ip_nw), uint2int(ip_sfx), nil
|
||||
} else {
|
||||
return -1, 0, 0, fmt.Errorf("unexpected len %d for %s", len(pip), pip)
|
||||
}
|
||||
return -1, 0, 0, fmt.Errorf("unexpected len %d for %s", len(pip), pip)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue