Fix udp nat

This commit is contained in:
世界 2022-04-29 17:43:09 +08:00
parent 8d95ae4cff
commit b4b6c838d1
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
11 changed files with 144 additions and 331 deletions

View file

@ -38,6 +38,10 @@ func (ap AddrPort) UDPAddr() *net.UDPAddr {
}
}
func (ap AddrPort) AddrPort() netip.AddrPort {
return netip.AddrPortFrom(ap.Addr.Addr(), ap.Port)
}
func (ap AddrPort) String() string {
return net.JoinHostPort(ap.Addr.String(), strconv.Itoa(int(ap.Port)))
}