Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ hex = { version = "0.4", default-features = false }
http = { version = "1", default-features = false, features = ["std"] }
libc = { version = "0.2", default-features = false }
log = { version = "0.4", default-features = false }
nss = { rev = "0.9.0", package = "nss-rs", git = "https://github.com/mozilla/nss-rs" }
nss = { rev = "0920a201bea7f9dc1e350991fe5d9bf1abd05f96", package = "nss-rs", git = "https://github.com/mozilla/nss-rs" }
qlog = { version = "0.16.0", default-features = false }
quinn-udp = { version = "0.6", default-features = false, features = ["log", "fast-apple-datapath"] }
rustc-hash = { version = "2.1", default-features = false, features = [ "std" ]}
Expand Down
2 changes: 0 additions & 2 deletions neqo-bin/src/bin/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
reason = "FIXME: Fixed in newer tokio versions."
)]
async fn main() -> Result<(), neqo_bin::client::Error> {
let args = neqo_bin::client::Args::parse();

#[cfg_attr(apple, expect(clippy::large_futures, reason = "OK in test code."))]
neqo_bin::client::client(args).await

Check warning on line 17 in neqo-bin/src/bin/client.rs

View workflow job for this annotation

GitHub Actions / Find mutants

Missed mutant

replace main -> Result<(), neqo_bin::client::Error> with Ok(())
}
4 changes: 1 addition & 3 deletions neqo-bin/src/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -644,9 +644,7 @@ pub async fn client(mut args: Args) -> Res<()> {

let handler = http3::Handler::new(to_request, args.clone());

Runner::new(real_local, &mut socket, client, handler, &args)
.run()
.await?
Box::pin(Runner::new(real_local, &mut socket, client, handler, &args).run()).await?
} else {
let client = http09::create_client(&args, real_local, remote_addr, &host, token)
.expect("failed to create client");
Expand Down
Loading