Hugo Landau

Results 328 comments of Hugo Landau

You can also define load/store functions without using memcpy, which I generally prefer: ``` uint32_t load32(const uint32_t *p) { const unsigned char *a = (const unsigned char *)p; return a[0]...

@thesamesam Sure, sounds good.

It looks like the client is rejecting the certificate sent by the server as not being trusted. OpenSSL will not use the Windows root CA store by default, though functionality...

@mattcaswell Is this still relevant or is it superceded by your new fixes?

>I am a bit skeptical about forcing sockets into non-blocking mode. One of the requirements is that applications have the capability to control the event loop themselves and changing the...

@mattcaswell The first commit in 'this' PR is [QUIC ACKM: Add support for psuedo-loss](https://github.com/openssl/openssl/pull/19582/commits/e09660f23f599556ea5ee48988c6e9c1fd546548).

Rebased. Updated to implement BIO poll descriptors and the new API in the design document. More updates to come.