-
-
Notifications
You must be signed in to change notification settings - Fork 561
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd4332b
commit b81cf02
Showing
27 changed files
with
57 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 8 additions & 3 deletions
11
...ns/rust/ockam/ockam_command/src/secure_channel/listener/static/create/after_long_help.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
```sh | ||
$ ockam node create n1 | ||
$ ockam node create n2 | ||
|
||
# Create a secure channel listener with a custom name on the default node | ||
$ ockam secure-channel-listener create test --at n2 | ||
/service/test | ||
✔ Secure Channel Listener at /service/test created successfully | ||
At node /node/n2 | ||
|
||
# Create a secure channel from n1 to our test secure channel listener on n2 | ||
$ ockam secure-channel create --from /node/n1 --to /node/n2/service/test | ||
/service/09738b73c54b81d48531f659aaa22533 | ||
$ ockam secure-channel create --from /node/n1 --to /node/n2/service/api | ||
✔ Secure Channel at /service/5c2a940cf008783cfd8d7012e772d674 created successfully | ||
From /node/n1 to /node/n2/service/api | ||
``` |
2 changes: 1 addition & 1 deletion
2
...ns/rust/ockam/ockam_command/src/secure_channel/listener/static/delete/after_long_help.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
```sh | ||
$ ockam secure-channel-listener delete scaddr --at n1 | ||
$ ockam secure-channel-listener delete 8eb3bfc8a6419f24c05ddd627d144bec --at n1 | ||
``` |
2 changes: 1 addition & 1 deletion
2
...ions/rust/ockam/ockam_command/src/secure_channel/listener/static/show/after_long_help.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
```sh | ||
$ ockam secure-channel-listener show scaddr --at n1 | ||
$ ockam secure-channel-listener show 8eb3bfc8a6419f24c05ddd627d144bec --at n1 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ementations/rust/ockam/ockam_command/src/secure_channel/static/delete/after_long_help.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
```sh | ||
$ ockam secure-channel delete scaddr --at n1 | ||
$ ockam secure-channel delete 8eb3bfc8a6419f24c05ddd627d144bec --at n1 | ||
``` |
2 changes: 1 addition & 1 deletion
2
implementations/rust/ockam/ockam_command/src/secure_channel/static/show/after_long_help.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
```sh | ||
$ ockam secure-channel show scaddr --at n1 | ||
$ ockam secure-channel show 8eb3bfc8a6419f24c05ddd627d144bec --at n1 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 5 additions & 2 deletions
7
...ementations/rust/ockam/ockam_command/src/tcp/connection/static/delete/after_long_help.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
```sh | ||
# To delete a TCP connection given its ID on the default node | ||
# To delete a TCP connection given its internal address on the default node | ||
$ ockam tcp-connection delete d59c01ab8d9683f8c454df746e627b43 | ||
|
||
# To delete a TCP connection given its ID on a specific node | ||
# To delete a TCP connection given its socket address on the default node | ||
$ ockam tcp-connection delete 127.0.0.1:5000 | ||
|
||
# To delete a TCP connection given its internal address on a specific node | ||
$ ockam tcp-connection delete d59c01ab8d9683f8c454df746e627b43 --at n1 | ||
``` |
5 changes: 4 additions & 1 deletion
5
implementations/rust/ockam/ockam_command/src/tcp/connection/static/show/after_long_help.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
```sh | ||
# To show a TCP connection given its ID | ||
# To show a TCP connection given its internal address | ||
$ ockam tcp-connection show d59c01ab8d9683f8c454df746e627b43 | ||
|
||
# To show a TCP connection given its socket address | ||
$ ockam tcp-connection show 127.0.0.1:5000 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 5 additions & 2 deletions
7
implementations/rust/ockam/ockam_command/src/tcp/listener/static/delete/after_long_help.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
```sh | ||
# To delete a TCP listener given its ID on the default node | ||
# To delete a TCP listener given its internal address on the default node | ||
$ ockam tcp-listener delete d59c01ab8d9683f8c454df746e627b43 | ||
|
||
# To delete a TCP listener given its ID on a specific node | ||
# To delete a TCP listener given its socket address on the default node | ||
$ ockam tcp-listener delete 127.0.0.1:5000 | ||
|
||
# To delete a TCP listener given its internal address on a specific node | ||
$ ockam tcp-listener delete d59c01ab8d9683f8c454df746e627b43 --at n1 | ||
``` |
5 changes: 4 additions & 1 deletion
5
implementations/rust/ockam/ockam_command/src/tcp/listener/static/show/after_long_help.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
```sh | ||
# To show a TCP listener given its ID | ||
# To show a TCP listener given its internal address | ||
$ ockam tcp-listener show d59c01ab8d9683f8c454df746e627b43 | ||
|
||
# To show a TCP listener given its socket address | ||
$ ockam tcp-listener show 127.0.0.1:5000 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters