From 4ea96698f66792302b88b06c756862e24cc5b88e Mon Sep 17 00:00:00 2001 From: Darrell Ball Date: Wed, 13 Feb 2019 15:34:21 -0800 Subject: Userspace datapath: Add fragmentation handling. Fragmentation handling is added for supporting conntrack. Both v4 and v6 are supported. After discussion with several people, I decided to not store configuration state in the database to be more consistent with the kernel in future, similarity with other conntrack configuration which will not be in the database as well and overall simplicity. Accordingly, fragmentation handling is enabled by default. This patch enables fragmentation tests for the userspace datapath. Signed-off-by: Darrell Ball Signed-off-by: Ben Pfaff --- lib/automake.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/automake.mk') diff --git a/lib/automake.mk b/lib/automake.mk index ba1041095..bae032bd8 100644 --- a/lib/automake.mk +++ b/lib/automake.mk @@ -1,4 +1,4 @@ -# Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 Nicira, Inc. +# Copyright (C) 2009-2018 Nicira, Inc. # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright @@ -108,6 +108,8 @@ lib_libopenvswitch_la_SOURCES = \ lib/hmapx.h \ lib/id-pool.c \ lib/id-pool.h \ + lib/ipf.c \ + lib/ipf.h \ lib/jhash.c \ lib/jhash.h \ lib/json.c \ -- cgit v1.2.1