1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-17 23:06:30 -05:00

rename udp.go to hub.go

This commit is contained in:
v2ray 2016-08-15 21:33:21 +02:00
parent 667b71aad0
commit 2a778762b1
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -98,3 +98,9 @@ func (this *UDPHub) Running() bool {
return this.accepting
}
// Connection return the net.Conn underneath this hub.
// Private: Visible for testing only
func (this *UDPHub) Connection() net.Conn {
return this.conn
}