From: flu0r1ne Date: Wed, 4 Oct 2023 03:13:00 +0000 (-0500) Subject: Use a uint32 for the type of a Linux mark X-Git-Tag: v0.96~18^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=47dd026ce3a9b726d1613586b8923db2c1afd645;p=thirdparty%2Fmtr.git Use a uint32 for the type of a Linux mark It is typical to store and manipulate Linux packet marks using unsigned values. --- diff --git a/packet/probe.h b/packet/probe.h index caf1314..5a5dc3a 100644 --- a/packet/probe.h +++ b/packet/probe.h @@ -69,7 +69,7 @@ struct probe_param_t { int type_of_service; /* The packet "mark" used for mark-based routing on Linux */ - int routing_mark; + uint32_t routing_mark; /* Time to live for the transmitted probe */ int ttl;