fake-torrent-client

Rust library to get client information (name, peer ID, key)

Usage

```rust let mut client = Client::new(); client.build(ClientVersion::Qbittorrent442); //or tou can get the enum from a string client.build(ClientVersion::fromstr("Transmission300").expect("Wrong client"));

client.getquery(); //get the query URL and HTTP headers (you have to replace fields in the url) client.generatekey(); //generate a new key client.generatepeerid(); //generate a new peer ID ```

You can also get other information form the client (see doc)