Skip to content

Commit

Permalink
Fix binding to reserved port error
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkren committed Dec 13, 2019
1 parent 80dd7c0 commit 10ce520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/visor/visor.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const Version = "0.0.1"

const supportedProtocolVersion = "0.0.1"

var reservedPorts = map[routing.Port]string{0: "router", 1: "skychat", 2: "SSH", 3: "socksproxy"}
var reservedPorts = map[routing.Port]string{0: "router", 1: "skychat", 2: "SSH", 3: "skysocks"}

// AppState defines state parameters for a registered App.
type AppState struct {
Expand Down

0 comments on commit 10ce520

Please sign in to comment.