mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-02 15:36:41 -05:00
Fix a bug in inbound detour handler
This commit is contained in:
parent
e42510aca5
commit
73807390f1
@ -28,7 +28,7 @@ func (this *InboundDetourHandler) Initialize() error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ports := this.config.PortRange()
|
ports := this.config.PortRange()
|
||||||
this.ich = make([]*InboundConnectionHandlerWithPort, 0, ports.From()-ports.To()+1)
|
this.ich = make([]*InboundConnectionHandlerWithPort, 0, ports.To()-ports.From()+1)
|
||||||
for i := ports.From(); i <= ports.To(); i++ {
|
for i := ports.From(); i <= ports.To(); i++ {
|
||||||
ichConfig := this.config.Settings()
|
ichConfig := this.config.Settings()
|
||||||
ich, err := ichFactory.Create(this.point, ichConfig)
|
ich, err := ichFactory.Create(this.point, ichConfig)
|
||||||
|
Loading…
Reference in New Issue
Block a user