Ire is a Rust implementation of an I2P router, designed to participate in the global, decentralised [I2P network].
Ire is in pre-alpha; much of the internal architecture still needs to be defined and implemented.
The binary implements a basic client and server that can be used to test the NTCP handshake:
Generate keys for the server and client:
bash
$ cargo run --release cli gen server.router.keys.dat server.router.info
$ cargo run --release cli gen client.router.keys.dat client.router.info
Run the server:
bash
$ RUST_LOG=ire=debug cargo run --release cli server server.router.keys.dat 127.0.0.1:12345
Run a client:
bash
$ RUST_LOG=ire=debug cargo run --release cli client client.router.keys.dat server.router.info 127.0.0.1:12345
We abide by the Contributor Covenant and ask that you do as well.
For more information, please see [CODEOFCONDUCT.md].
Bug reports and pull requests are welcome on GitHub at https://github.com/str4d/ire
Copyright (c) 2017 The Ire Developers. See [LICENSE.txt] for further details.