Hello, I am trying to dump conntrack entries from my application. When I run the binary, it throws the following error and exits: # ./dump ctnetlink kernel ABI is broken, contact your vendor. ../../source_subfolder/src/conntrack/parse_mnl.c:824 reason: Numerical result out of range I looked at the source code of the library, it seems to be this line: case CTA_SYNPROXY_TSOFF: if (mnl_attr_validate(attr, MNL_TYPE_U32) < 0) abi_breakage(); break; } I am not sure why this issue occurs or how to fix it. I appreciate any help! Kind Regards!