aboutsummaryrefslogtreecommitdiffstats
path: root/src/vpp
diff options
context:
space:
mode:
authorSteven Luong <sluong@cisco.com>2022-10-10 11:37:57 -0700
committerFlorin Coras <florin.coras@gmail.com>2022-10-13 18:25:46 +0000
commit10e5b4a016061f2d9485ff309d1239abb012aae0 (patch)
treecdb9a68c3badf5f5ca1edea27e08300cba986507 /src/vpp
parentaf36e96d07911f26e8e36f59ea2319cb5c13c0ad (diff)
session: make session code compile with SESSION_DEBUG enable
Session debug code does not compile anymore due to vlib_mains global variable disappearing over time. Replace it with vlib_get_main_by_index call. Add a cmake variable and pass it from make command line to enable session debug. Notice transport debug is required for session debug. make rebuild VPP_EXTRA_CMAKE_ARGS=-DVPP_TCP_DEBUG_ALWAYS=ON VPP_EXTRA_CMAKE_ARGS+=-DVPP_SESSION_DEBUG=ON Type: fix Signed-off-by: Steven Luong <sluong@cisco.com> Change-Id: Ic2e887c6b10b77cbabd56934f4931fcfa04a6751
Diffstat (limited to 'src/vpp')
-rw-r--r--src/vpp/vnet/config.h.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vpp/vnet/config.h.in b/src/vpp/vnet/config.h.in
index ccf157197ba..e8548c9b492 100644
--- a/src/vpp/vnet/config.h.in
+++ b/src/vpp/vnet/config.h.in
@@ -19,5 +19,6 @@
#define VPP_SANITIZE_ADDR_OPTIONS "@VPP_SANITIZE_ADDR_OPTIONS@"
#cmakedefine VPP_IP_FIB_MTRIE_16
#cmakedefine VPP_TCP_DEBUG_ALWAYS
+#cmakedefine VPP_SESSION_DEBUG
#endif