4ecc1f7ac4
QUIC is an experimental protocol aimed at reducing web latency over that of TCP. On the surface, QUIC is very similar to TCP+TLS+SPDY implemented on UDP. Because TCP is implement in operating system kernels, and middlebox firmware, making significant changes to TCP is next to impossible. However, since QUIC is built on top of UDP, it suffers from no such limitations. Key features of QUIC over existing TCP+TLS+SPDY include + Dramatically reduced connection establishment time + Improved congestion control + Multiplexing without head of line blocking + Forward error correction + Connection migration
16 lines
485 B
C
16 lines
485 B
C
$NetBSD: patch-include__openssl__thread.h,v 1.1 2016/07/01 20:32:35 agc Exp $
|
|
|
|
NetBSD portability patches
|
|
|
|
--- boringssl/include/openssl/thread.h.orig 2015-12-30 15:55:52.000000000 -0800
|
|
+++ boringssl/include/openssl/thread.h 2015-12-30 18:06:05.000000000 -0800
|
|
@@ -87,6 +87,9 @@
|
|
typedef union crypto_mutex_st {
|
|
double alignment;
|
|
uint8_t padding[3*sizeof(int) + 5*sizeof(unsigned) + 16 + 8];
|
|
+#if defined(__NetBSD__)
|
|
+ uint8_t nbpad[64 + 8];
|
|
+#endif
|
|
} CRYPTO_MUTEX;
|
|
#endif
|
|
|