mozilla / neqo

Neqo, the Mozilla Firefox implementation of QUIC in Rust
https://firefox-source-docs.mozilla.org/networking/http/http3.html
Apache License 2.0
1.84k stars 124 forks source link

Replace usage of mem::replace in CryptoStreams::discard() #454

Closed agrover closed 4 years ago

agrover commented 4 years ago

Use mem::take instead, once Firefox builds are using Rust 1.40+.

ddragana commented 4 years ago

Fixed by #487