Skip to content

Commit

Permalink
doc: Fix instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Nereuxofficial committed Oct 27, 2023
1 parent a4c381b commit b022dc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ That being said, it works fine on my local machine. I recommend running the foll
```
sudo sysctl -w net.ipv4.tcp_fin_timeout=5
sudo sysctl -w net.ipv4.tcp_tw_reuse=1
sysctl -w net.ipv4.ip_local_port_range="1024 65535"
sudo sysctl -w net.ipv4.ip_local_port_range="1024 65535"
```

## Contributing
Expand Down
3 changes: 1 addition & 2 deletions lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
use crate::markov::MAX_PACKETS;
use crate::packets::PacketQueue;
use clap::{Parser, Subcommand};
use rand::{thread_rng, Rng};
use rand::Rng;
use serde::{Deserialize, Serialize};
use std::str::FromStr;

Expand All @@ -35,7 +35,6 @@ pub mod runtime;
// TODO: Clean up main
// TODO: Try fuzzing a basic mongoose server?
// TODO: Fuzz mosquitto compiled with sanitizers
// TODO: Lib-split to allow benchmarking

/// Struct to serialize threads once they are done(aka the broker has crashed).
#[derive(Serialize, Deserialize, Debug)]
Expand Down

0 comments on commit b022dc0

Please sign in to comment.