A hypothetical, distributed, encrypted, instant messaging protocol.
Please read the protocol for a more detailed overview.
comm targets Rust stable (currently 1.30). It depends on protobuf being installed.
You can fire up a CLI chat client by running
cargo run comm -- $SECRET 0.0.0.0:$PORT [1.2.3.4:$OTHER_NODE_PORT]
Where SECRET is a word that will be SHA1 hashed into your node's address, PORT
is the local port you want to run on, and then third argument is the address
and port of another node. This other node is a "bootstrap node" and will be
your entrypoint into the network. It can be another comm client running
without a bootstrap router of it's own.
An interactive CLI will start, and you can send a message to another node by entering its address, followed by a message:
44751799925b964a00bae3863cc4236f9bb8d519 Hi there!
Documentation is still forthcoming, but many of the modules have doc comments. I'm still trying to figure out a good way to host rust docs out of GitHub Pages.