Skip to content

Commit

Permalink
fix(server): remove support_draft_29
Browse files Browse the repository at this point in the history
Support for QUIC draft 29 was removed with #4467.

#4120 reintroduced it as a faulty merge.

This commit removes it again.

Pull-Request: #4622.
  • Loading branch information
mxinden committed Oct 10, 2023
1 parent d605255 commit 3a0f0c2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions misc/server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
noise::Config::new,
yamux::Config::default,
)?
.with_quic_config(|mut cfg| {
cfg.support_draft_29 = true;
cfg
})
.with_quic()
.with_dns()?
.with_behaviour(|key| {
behaviour::Behaviour::new(key.public(), opt.enable_kademlia, opt.enable_autonat)
Expand Down

0 comments on commit 3a0f0c2

Please sign in to comment.