Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tools/echo_server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ The JSON file contains the following options:
1. Relative or absolute path to the server certificate generated in the credential creation prerequisite.
1. server-key-location
1. Relative or absolute path to the server key generated in the credential creation prerequisite.
1. use-udp
1. Enable this option to run the USP echo server.
## Example Configuration
```json
{
Expand All @@ -34,7 +36,8 @@ The JSON file contains the following options:
"secure-connection": false,
"server-port": "9000",
"server-certificate-location": "./certs/server.pem",
"server-key-location": "./certs/server.key"
"server-key-location": "./certs/server.key",
"use-udp": false
}
```

Expand Down
3 changes: 2 additions & 1 deletion tools/echo_server/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
"server-port": "9000",
"cert-verify": true,
"server-certificate-location": "./certs/server.pem",
"server-key-location": "./certs/server.key"
"server-key-location": "./certs/server.key",
"use-udp": false
}
Loading