Skip to content

Commit

Permalink
Made remote required when creating a tunnel
Browse files Browse the repository at this point in the history
  • Loading branch information
breathbath committed Mar 9, 2021
1 parent f165afe commit 0bb7789
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/pkg/controllers/tunnel.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ If local is not specified, a random server port will be assigned automatically`,
},
{
Field: Remote,
Description: "The ports are defined from the servers' perspective. " +
Description: "[required] the ports are defined from the servers' perspective. " +
"'Remote' refers to the ports and interfaces of the client., e.g. '3389'",
ShortName: "r",
ShortName: "r",
IsRequired: true,
},
{
Field: Scheme,
Expand Down

0 comments on commit 0bb7789

Please sign in to comment.