16 lines
170 B
Go
16 lines
170 B
Go
|
package converter
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
)
|
||
|
|
||
|
// Not implemented
|
||
|
func IPv6ToInt(ip net.IP) int32 {
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
// Not implemented
|
||
|
func IntToIPv6(n int32) net.IP {
|
||
|
return nil
|
||
|
}
|