MINOR: quic: Add a ring buffer implementation for QUIC
This implementation is inspired from Linux kernel circular buffer implementation
(see include/linux/circ-buf.h). Such buffers may be used at the same time both
by writer and reader (lock-free).
diff --git a/Makefile b/Makefile
index 0cb1541..e586ba4 100644
--- a/Makefile
+++ b/Makefile
@@ -590,7 +590,7 @@
ifneq ($(USE_QUIC),)
OPTIONS_OBJS += src/quic_sock.o src/proto_quic.o src/xprt_quic.o src/quic_tls.o \
src/quic_frame.o src/quic_cc.o src/quic_cc_newreno.o src/mux_quic.o \
- src/qpack-dec.o src/qpack-tbl.o src/h3.o
+ src/cbuf.o src/qpack-dec.o src/qpack-tbl.o src/h3.o
endif
ifneq ($(USE_LUA),)