database64128

Results 265 comments of database64128

> but that’s quite small comparing to the other part of the application. It's actually quite significant in my experience, especially after I implemented `recvmmsg(2)` and `sendmmsg(2)`. I had to...

Linux and Windows seem to be the only platforms where socket options are properly implemented for dual-stack (`IPV6_V6ONLY` off) IPv6 sockets. On these platforms you can call `setsockopt(IPPROTO_IP, IP_MTU_DISCOVER, IP_PMTUDISC_DO)`...

Does this addon support specifying the working directory? `yt-dlp` saves downloaded files to the current working directory by default.

youtube-dl-wpf uses [MaterialDesignThemes](https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit) unmodified. You'd have better luck getting this resolved by opening an issue at MicaForEveryone about the problems with **WPF apps that use MaterialDesignThemes**.

You probably want to use `/dev/null` as the uPSK store path. Actually, you don't even need a `ServerConfig`. `cred.Manager` was written to manage the credential file, and you don't need...

What you are proposing might look nice at first glance, but it's going to create a lot of mess when you start implementing it. It's fundamentally incompatible with shadowsocks-go's architecture....

For now, you can use `go version -m ` to display the version info.

@thaJeztah IO calls on non-blocking sockets will never return `-EINTR`. The problem here is that Moby calls `SetSocketTimeout`, which sets `SO_SNDTIMEO` and `SO_RCVTIMEO`. These socket options are only useful for...

This all still feels very strange to me. I checked [`tokio`'s implementation of `TcpStream`](https://github.com/tokio-rs/tokio/blob/master/tokio/src/net/tcp/stream.rs) and followed the references all the way down to the libc calls. There's no handling of...

> Unlike Go programs, Rust programs don't (inherently) [have a runtime which sends SIGURG to the process](https://go.dev/doc/go1.14#runtime) baked in. Tokio does allow you to [register for receiving signals](https://docs.rs/tokio/latest/tokio/signal/unix/struct.Signal.html). It's actually...