1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/transport/internet/tcp_hub.go

97 lines
2.9 KiB
Go
Raw Permalink Normal View History

2016-06-14 22:54:08 +02:00
package internet
import (
2017-02-24 01:05:16 +01:00
"context"
2021-02-17 04:31:50 +08:00
"github.com/v2fly/v2ray-core/v4/common/net"
2016-06-14 22:54:08 +02:00
)
2021-05-20 05:28:52 +08:00
var transportListenerCache = make(map[string]ListenFunc)
2016-06-14 22:54:08 +02:00
2018-08-06 13:48:35 +02:00
func RegisterTransportListener(protocol string, listener ListenFunc) error {
if _, found := transportListenerCache[protocol]; found {
2017-04-09 01:43:25 +02:00
return newError(protocol, " listener already registered.").AtError()
2017-01-03 15:16:48 +01:00
}
transportListenerCache[protocol] = listener
2017-01-03 15:16:48 +01:00
return nil
}
2018-02-08 15:39:46 +01:00
type ConnHandler func(Connection)
2017-05-09 00:01:15 +02:00
type ListenFunc func(ctx context.Context, address net.Address, port net.Port, settings *MemoryStreamConfig, handler ConnHandler) (Listener, error)
2016-09-30 16:53:40 +02:00
2016-06-14 22:54:08 +02:00
type Listener interface {
Close() error
Addr() net.Addr
}
2020-10-29 15:30:38 +08:00
// ListenUnix is the UDS version of ListenTCP
func ListenUnix(ctx context.Context, address net.Address, settings *MemoryStreamConfig, handler ConnHandler) (Listener, error) {
if settings == nil {
s, err := ToMemoryStreamConfig(nil)
if err != nil {
return nil, newError("failed to create default unix stream settings").Base(err)
}
settings = s
}
protocol := settings.ProtocolName
listenFunc := transportListenerCache[protocol]
if listenFunc == nil {
return nil, newError(protocol, " unix istener not registered.").AtError()
}
listener, err := listenFunc(ctx, address, net.Port(0), settings, handler)
if err != nil {
return nil, newError("failed to listen on unix address: ", address).Base(err)
}
return listener, nil
}
2021-05-20 05:28:52 +08:00
func ListenTCP(ctx context.Context, address net.Address, port net.Port, settings *MemoryStreamConfig, handler ConnHandler) (Listener, error) {
2018-09-07 15:00:46 +02:00
if settings == nil {
s, err := ToMemoryStreamConfig(nil)
if err != nil {
return nil, newError("failed to create default stream settings").Base(err)
}
settings = s
}
2018-09-10 13:23:27 +02:00
if address.Family().IsDomain() && address.Domain() == "localhost" {
address = net.LocalHostIP
}
if address.Family().IsDomain() {
return nil, newError("domain address is not allowed for listening: ", address.Domain())
}
2018-09-07 14:50:25 +02:00
protocol := settings.ProtocolName
2021-09-07 16:53:09 +01:00
if originalProtocolName := getOriginalMessageName(settings); originalProtocolName != "" {
protocol = originalProtocolName
}
listenFunc := transportListenerCache[protocol]
2017-01-03 15:16:48 +01:00
if listenFunc == nil {
2017-04-09 01:43:25 +02:00
return nil, newError(protocol, " listener not registered.").AtError()
2016-06-14 22:54:08 +02:00
}
listener, err := listenFunc(ctx, address, port, settings, handler)
2016-06-14 22:54:08 +02:00
if err != nil {
2017-04-09 01:43:25 +02:00
return nil, newError("failed to listen on address: ", address, ":", port).Base(err)
2016-06-14 22:54:08 +02:00
}
2017-02-26 14:38:41 +01:00
return listener, nil
2016-06-14 22:54:08 +02:00
}
2018-09-10 13:23:27 +02:00
2018-12-03 23:39:21 +01:00
// ListenSystem listens on a local address for incoming TCP connections.
//
// v2ray:api:beta
func ListenSystem(ctx context.Context, addr net.Addr, sockopt *SocketConfig) (net.Listener, error) {
return effectiveListener.Listen(ctx, addr, sockopt)
2018-09-15 21:35:32 +02:00
}
2018-12-03 23:39:21 +01:00
// ListenSystemPacket listens on a local address for incoming UDP connections.
//
// v2ray:api:beta
func ListenSystemPacket(ctx context.Context, addr net.Addr, sockopt *SocketConfig) (net.PacketConn, error) {
return effectiveListener.ListenPacket(ctx, addr, sockopt)
2018-09-10 13:23:27 +02:00
}