60fa5cfeb8
* add TcpProxyClient and TcpProxyServer abstractions to SDK * add single connection example * add multi-connection example * add simple echo server to `tools/`: used for multi-connection example * update FFI toml files: switched to local imports * add proxy bindings to `ffi/shared` * add proxy bindings and example to `ffi/go` * add note to `ffi/cpp` about lack of Proxy bindings for the moment
10 lines
299 B
Markdown
10 lines
299 B
Markdown
# Nym Echo Server
|
|
|
|
This is an initial minimal implementation of an echo server built using the `NymProxyServer` Rust SDK abstraction.
|
|
|
|
## Usage
|
|
```
|
|
cargo build --release
|
|
../../target/release/echo-server <PORT> <PATH_TO_ENV_FILE> e.g. ../../target/release/echo-server 9000 ../../envs/canary.env
|
|
```
|