Jacob Hoffman-Andrews
Jacob Hoffman-Andrews
I'm definitely in favor of simplifying our build system. The original goal for integrating CMake was that we were having trouble maintaining our hand-rolled GNU-style Makefile, and in particular we...
Thanks for the report. I've been able to reproduce, and get more detailed output by adding /DEBUG to the `link` command. I also added some printlns in the rustls code....
Alright, here's a minimized repro: copy_within.rs ```rust fn do_it() { let mut buf = [1, 2, 3]; buf.copy_within(1..3, 0); assert_eq!(buf, [2, 3, 3]); } ``` copy_within.c ```c int main() {...
I've _found_ the problem, but I don't fully _understand_ the problem. Maybe as a Windows dev you can help me understand this better. To get more info, I also made...
Thanks for the details. I suspect, given the newness of ASAN support in MSVC, this is more likely a false alarm in ASAN than a bug in crustls or rustls.
Oh, that looks really interesting! Thank you.
An interesting question! Cache hits and cache misses will have a completely different distribution, so it's probably hard to represent them nicely in a single set of histogram buckets. We...
To be clear, we should do this by handling this subcategory of error using https://pkg.go.dev/os#IsNotExist (i.e. not by statting the file first to see if it exists). We should also...
> If I'm interpreting the docs correctly TLS is ignored even when control-use-cert is set to yes in the [remote-control section](https://unbound.docs.nlnetlabs.nl/en/latest/manpages/unbound.conf.html#remote-control-options) of unbound.conf, when unbound-control is listening on a local...
Note: It may not be necessary to spin off PKCS#11 support into another repository. You can follow the example of `database/sql` and provide a registry for key loaders. That way...