Jarno van der Linden
Jarno van der Linden
The timeAdd() function in timespec incorrectly calculates the carry from nsec to sec. ``` const time_t sec=t.tv_nsec/1e-9; t.tv_sec+=sec; t.tv_nsec-=sec*1e-9; ``` should probably be: ``` const time_t sec=t.tv_nsec/1e9; t.tv_sec+=sec; t.tv_nsec-=sec*1e9; ```...
### Describe the bug It is possible to receive a QUIC_CONNECTION_EVENT_PEER_CERTIFICATE_RECEIVED event with a NULL certificate. Particularly when requiring client certificates and the client does not provide one. The documentation...
### Describe the feature you'd like supported Expose the RttVariance of a connection in the connection statistics API. ### Proposed solution In order to inform the amount of buffering needed...