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
474 B
C
16 lines
474 B
C
$NetBSD: patch-crypto__mem.c,v 1.1 2016/07/01 20:32:35 agc Exp $
|
|
|
|
NetBSD portability patches
|
|
|
|
--- boringssl/crypto/mem.c.orig 2015-12-30 15:55:51.000000000 -0800
|
|
+++ boringssl/crypto/mem.c 2015-12-30 18:06:05.000000000 -0800
|
|
@@ -55,7 +55,9 @@
|
|
* [including the GNU Public Licence.] */
|
|
|
|
#if !defined(_POSIX_C_SOURCE)
|
|
+# if !defined(__NetBSD__)
|
|
#define _POSIX_C_SOURCE 201410L /* needed for strdup, snprintf, vprintf etc */
|
|
+# endif
|
|
#endif
|
|
|
|
#include <openssl/mem.h>
|