Cleanups of ipv6 changes.
I was late re-reviewing and some comments did not get resolved.
This commit is contained in:
@@ -38,11 +38,11 @@ type Interface interface {
|
||||
IsIpv6() bool
|
||||
}
|
||||
|
||||
type Protocol bool
|
||||
type Protocol byte
|
||||
|
||||
const (
|
||||
ProtocolIpv4 Protocol = false
|
||||
ProtocolIpv6 Protocol = true
|
||||
ProtocolIpv4 Protocol = iota + 1
|
||||
ProtocolIpv6
|
||||
)
|
||||
|
||||
type Table string
|
||||
|
Reference in New Issue
Block a user