Jeff Wendling
Jeff Wendling
I have plans to let people put a config file in their repo and part of it will be a web location that will get a post of the output...
I hit this again, recently. I was trying to write my own abstraction around register allocation with some basic automatic stack spills, and so it was handing out physical YMM...
Thanks for the pointer to that PR. It seems to do significantly better, but it's not quite fixed yet. Here's a simple reproducer: ```go func TestAsX(c ctx) { TEXT("test", NOSPLIT,...
Yeah, I'm running on a27b7434c5a9.
Have you tried on the most recent master? I closed #43 because we have this shim function return null on 1.1: https://github.com/spacemonkeygo/openssl/blob/1ea168d09854859640843a168ed781ef94ea6e2e/shim.c#L131
Although it does look like a bug was introduced where returning NULL will cause problems. That needs to be fixed, regardless, but I don't believe there is a current build...
The library tries to do a good job about only doing short cgo calls: they should all return quickly. Do you have a short example demonstrating the problem?
The purpose of `shim.h` and `shim.c` is to allow interoperability with different OpenSSL versions. If the call you're looking to expose is the same across all the versions that are...
The go http2 implementation is heavily tied to using crypto/tls to read the ALNP business in the handshake unfortunately. You have to figure out a way to serve http2 over...
Maybe the downstream people who stuck the code in the vendor folder missed some updated files? The conn.setSession method was added in 4d3c3b16ef613e640d553be49fb1cfd95492a6e0, but SetTlsExtHostName was there from the first...