Add ChiakiReorderQueue

This commit is contained in:
Florian Märkl 2019-06-27 11:49:55 +02:00
commit 632cf6cf91
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
6 changed files with 490 additions and 3 deletions

View file

@ -24,7 +24,8 @@ set(HEADER_FILES
include/chiaki/seqnum.h
include/chiaki/discovery.h
include/chiaki/congestioncontrol.h
include/chiaki/stoppipe.h)
include/chiaki/stoppipe.h
include/chiaki/reorderqueue.h)
set(SOURCE_FILES
src/common.c
@ -51,7 +52,8 @@ set(SOURCE_FILES
src/frameprocessor.c
src/discovery.c
src/congestioncontrol.c
src/stoppipe.c)
src/stoppipe.c
src/reorderqueue.c)
add_subdirectory(protobuf)
include_directories("${NANOPB_SOURCE_DIR}")