This is a sandbox repository to experiment with Rust
A somewhat unusual implementation of the "Hello, World!" program.
It needs a nightly compiler and is only targeted at x64 Linux.
cd hello-world
cargo build --releasehello-world/release/rust-sandbox-hello-worldThis is a simple example application where a server and client communicate over a custom TCP protocol.
The client can send a "math request" (an opcode and two operands), to which the server replies with an answer.
I have similar programs in my java-sandbox repository, and
also a Wireshark dissector for this protocol in my
wireshark-plugin-sandbox repository.
cd tcp-example
cargo build --releasetcp-example/target/release/server 9999tcp-example/target/release/client localhost 9999