change ip

This commit is contained in:
v 2023-12-30 02:55:21 +01:00
parent b130138c2b
commit 019d87ba62

View file

@ -16,7 +16,7 @@ fn main() -> Result<(), Box<dyn Error>> {
thread::scope(|s| {
for _ in 0..32 {
s.spawn(|| -> Result<(), Box<dyn Error + Send + Sync>> {
let stream = TcpStream::connect("151.217.15.79:1337")?;
let stream = TcpStream::connect("151.217.15.90:1337")?;
// disable Nagle's algorithm
stream.set_nodelay(true)?;
let mut reader = BufReader::new(stream.try_clone()?);