14 lines
611 B
Markdown
14 lines
611 B
Markdown
# meteoro
|
|
|
|
A BitTorrent tracker, written in Rust, implementing a BEP 15-compliant UDP tracker server.
|
|
|
|
## Building
|
|
|
|
`$ cargo build`
|
|
|
|
## Usage
|
|
|
|
After building the binary as described above, one can run the executable with the `--help` flag to see a listing of options the server software provides.
|
|
|
|
The server software currently binds to the `localhost`, both IPv4 and IPv6, when run with no arguments. One can supply the `-a IPV4_ADDRESS:PORT` option or `-A IPV6_ADDRESS:PORT` option to specify interfaces for the server to bind to. Example: `$ meteoro -a 192.168.1.23:6969` to bind on 192.168.1.23, port 6969.
|