Linus Färnstrand

Results 397 comments of Linus Färnstrand
trafficstars

https://github.com/rust-lang/rust/pull/78802 has now been merged. So the discussion here can continue. There should now not be anything stopping us from moving `IpAddr*` and `SocketAddr*` into `core` as far as I...

Ping. Do you think this type belongs in `loom`? Loom tries to make it possible to track heap allocations, so it feels quite natural that it would have the most...

Do you want `Box` in `loom` at all? I have left this PR forgotten for a long time now. I still copy this hack-box type into crates where I need...

There are a bunch of stuff that this `Box` is not doing properly. For example handling zero sized types. It looks like it could be a bunch of non-trivial work...

Working on stable is really great! That's a welcome change :tada:. However, we kind of need `aarch64` also, and nightly is not an option.

the `asm!` macro will be stable in the next Rust release (1.59). Will it be possible to make `crypto2` work on stable on all platforms then? Or what is currently...

Would there be a lot of work to implement a non-simd version of the code that is active as long as a `nightly` feature flag is not enabled or something?

This is still a problem. The NDIS6 driver works really bad under Windows 7 if you apply any load (network traffic) to the system. The NDIS5 driver is much faster...

Yeah. We (Mullvad VPN) have been installing the NDIS5 driver for win7 users all the time because of this issue. In our latest release we upgraded everyone to the latest...

How about making the `Writer::write` method accept a custom `PacketBuffer` type. This type has `PacketBuffer::buffer_mut() -> &mut [u8]` where the packet data can be written and that is automatically offset...