Skip to content

Commit

Permalink
Fix Windows cargo test (ekzhang#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
BxOxSxS authored Apr 21, 2022
1 parent e25f021 commit e613629
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ impl Server {
return Ok(());
}
info!(?port, "new client");
let listener = match TcpListener::bind(("::", port)).await {
let listener = match TcpListener::bind(("0.0.0.0", port)).await {
Ok(listener) => listener,
Err(_) => {
warn!(?port, "could not bind to local port");
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async fn spawn_client(secret: Option<&str>) -> Result<(TcpListener, SocketAddr)>
let listener = TcpListener::bind("localhost:0").await?;
let local_port = listener.local_addr()?.port();
let client = Client::new("localhost", local_port, "localhost", 0, secret).await?;
let remote_addr = ([0, 0, 0, 0], client.remote_port()).into();
let remote_addr = ([127, 0, 0, 1], client.remote_port()).into();
tokio::spawn(client.listen());
Ok((listener, remote_addr))
}
Expand Down

0 comments on commit e613629

Please sign in to comment.