mirror of
https://github.com/yusing/godoxy.git
synced 2026-04-23 01:08:47 +02:00
fixed streams with zero port being served
This commit is contained in:
@@ -33,9 +33,8 @@ func (p Port) String() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
MinPort = 0
|
MinPort = 0
|
||||||
MaxPort = 65535
|
MaxPort = 65535
|
||||||
ErrPort = Port(-1)
|
ErrPort = Port(-1)
|
||||||
NoPort = Port(-1)
|
NoPort = Port(0)
|
||||||
ZeroPort = Port(0)
|
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ func (r *StreamRoute) String() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (r *StreamRoute) Start() E.NestedError {
|
func (r *StreamRoute) Start() E.NestedError {
|
||||||
if r.Port.ListeningPort == PT.NoPort || r.started.Load() {
|
if r.Port.ProxyPort == PT.NoPort || r.started.Load() {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
r.ctx, r.cancel = context.WithCancel(context.Background())
|
r.ctx, r.cancel = context.WithCancel(context.Background())
|
||||||
|
|||||||
Reference in New Issue
Block a user