| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | package pointimport (	"github.com/v2ray/v2ray-core/common/log"	v2net "github.com/v2ray/v2ray-core/common/net"	"github.com/v2ray/v2ray-core/common/retry"	"github.com/v2ray/v2ray-core/proxy/common/connhandler"	"github.com/v2ray/v2ray-core/shell/point/config")type InboundConnectionHandlerWithPort struct {	port    v2net.Port	handler connhandler.InboundConnectionHandler}type InboundDetourHandler struct {	point  *Point	config config.InboundDetourConfig	ich    []*InboundConnectionHandlerWithPort}func (this *InboundDetourHandler) Initialize() error {	ichFactory := connhandler.GetInboundConnectionHandlerFactory(this.config.Protocol())	if ichFactory == nil {		log.Error("Unknown inbound connection handler factory %s", this.config.Protocol())		return config.BadConfiguration	}	ports := this.config.PortRange()	this.ich = make([]*InboundConnectionHandlerWithPort, 0, ports.From()-ports.To()+1)	for i := ports.From(); i <= ports.To(); i++ {		ichConfig := this.config.Settings()		ich, err := ichFactory.Create(this.point, ichConfig)		if err != nil {			log.Error("Failed to create inbound connection handler: %v", err)			return err		}		this.ich = append(this.ich, &InboundConnectionHandlerWithPort{			port:    i,			handler: ich,		})	}	return nil}func (this *InboundDetourHandler) Start() error {	for _, ich := range this.ich {		return retry.Timed(100 /* times */, 100 /* ms */).On(func() error {			err := ich.handler.Listen(ich.port.Value())			if err != nil {				return err			}			return nil		})	}	return nil}
 |