diff options
author | Roberto AGOSTINO <roberto.agostino@sistemiditlc.it> | 2021-02-03 10:28:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-03 10:28:51 +0100 |
commit | b70ad0e2f19aa1d6f4b3b64208e14c6e5839d60a (patch) | |
tree | 4ba76c7f9a3ac3baab27697a2f040e5d02788f07 /configure.seed | |
parent | ee945349063418882eb7a4a968fe72176c4eda04 (diff) |
fragments management added (#1122)
Management of tcp segments managements.
Co-authored-by: ragostino <ragostino73@gmail.com>
Co-authored-by: Luca Deri <lucaderi@users.noreply.github.com>
Diffstat (limited to 'configure.seed')
-rw-r--r-- | configure.seed | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.seed b/configure.seed index 1e65e047d..2533aa82b 100644 --- a/configure.seed +++ b/configure.seed @@ -217,6 +217,9 @@ if test "${with_pcre+set}" = set; then : fi fi +# TCP segments management (buffer, sort and reassembly the segments) +FRAG_MAN_ENABLED=1 +AC_DEFINE_UNQUOTED(FRAG_MAN, ${FRAG_MAN_ENABLED}, [Enable the TCP segments fragmentation management]) AC_CONFIG_FILES([Makefile example/Makefile example/Makefile.dpdk tests/Makefile tests/unit/Makefile tests/dga/Makefile libndpi.pc src/include/ndpi_define.h src/lib/Makefile python/Makefile fuzz/Makefile src/include/ndpi_api.h]) AC_CONFIG_FILES([tests/do.sh], [chmod +x tests/do.sh]) @@ -241,4 +244,5 @@ AC_SUBST(JSONC_CFLAGS) AC_SUBST(JSONC_LIBS) AC_SUBST(GCRYPT_ENABLED) AC_SUBST(GNU_PREFIX) +AC_SUBST(FRAG_MAN_ENABLED) AC_OUTPUT |