mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 04:42:33 +02:00
fixed streams with zero port being served
This commit is contained in:
parent
ba13b81b0e
commit
a7a922308e
2 changed files with 5 additions and 6 deletions
|
@ -33,9 +33,8 @@ func (p Port) String() string {
|
|||
}
|
||||
|
||||
const (
|
||||
MinPort = 0
|
||||
MaxPort = 65535
|
||||
ErrPort = Port(-1)
|
||||
NoPort = Port(-1)
|
||||
ZeroPort = Port(0)
|
||||
MinPort = 0
|
||||
MaxPort = 65535
|
||||
ErrPort = Port(-1)
|
||||
NoPort = Port(0)
|
||||
)
|
||||
|
|
|
@ -58,7 +58,7 @@ func (r *StreamRoute) String() string {
|
|||
}
|
||||
|
||||
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
|
||||
}
|
||||
r.ctx, r.cancel = context.WithCancel(context.Background())
|
||||
|
|
Loading…
Add table
Reference in a new issue