Skip to content

Commit

Permalink
Fix Windows warning
Browse files Browse the repository at this point in the history
  • Loading branch information
joerivanruth committed Apr 25, 2024
1 parent 7d91da2 commit cfbf3b1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/proxy/network.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
use std::io::{self, ErrorKind};
use std::{fs, net};
use std::net;

use mio::net::{TcpListener, TcpStream};

#[cfg(unix)]
use mio::net::{UnixListener, UnixStream};
#[cfg(unix)]
use std::fs;

use crate::addr::Addr;

Expand Down

0 comments on commit cfbf3b1

Please sign in to comment.