From eef84a2afd2aa0d21072f6e7ef038fe10dcc245d Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Mon, 6 Nov 2017 21:38:55 +0100 Subject: lib: Refactor FRCT implementation The frct_pci and rq headers are moved from include/ouroboros to src/lib since they are only needed in the library. FRCT is moved to its own source file. FRCT takes the application PDUs, encapsulates and processes them and hands them back. This makes it easier to disable FRCT should the application want to write to a "raw" flow. An FRCT instance is now allocated upon alloc and released upon dealloc. The FRCT data structure is split into a sender and receiver connection record. Setting a new configuration will now be done upon sending the next data PDU, which will flag the DRF for a new run and use that configuration. This avoids some issues should packets arrive out-of-order, and simplifies setting a configuration. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- src/lib/tests/rq_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/tests') diff --git a/src/lib/tests/rq_test.c b/src/lib/tests/rq_test.c index e2d0f435..7b57cf30 100644 --- a/src/lib/tests/rq_test.c +++ b/src/lib/tests/rq_test.c @@ -20,7 +20,7 @@ * Foundation, Inc., http://www.fsf.org/about/contact/. */ -#include +#include "rq.h" #include -- cgit v1.2.3