16 lines
202 B
Go
Raw Normal View History

2022-03-10 10:44:48 +01:00
package utp
import "net"
type addr struct {
socket net.Addr
}
func (me addr) Network() string {
return "utp/" + me.socket.Network()
}
func (me addr) String() string {
return me.socket.String()
}