File tree Expand file tree Collapse file tree 4 files changed +30
-0
lines changed Expand file tree Collapse file tree 4 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -1503,11 +1503,16 @@ NFT_CMP_LT
15031503NFT_CMP_LTE
15041504NFT_CMP_NEQ
15051505NFT_CONTINUE
1506+ NFT_CT_AVGPKT
15061507NFT_CT_BYTES
15071508NFT_CT_DIRECTION
15081509NFT_CT_DST
1510+ NFT_CT_DST_IP
1511+ NFT_CT_DST_IP6
1512+ NFT_CT_EVENTMASK
15091513NFT_CT_EXPIRATION
15101514NFT_CT_HELPER
1515+ NFT_CT_ID
15111516NFT_CT_L3PROTOCOL
15121517NFT_CT_LABELS
15131518NFT_CT_MARK
@@ -1517,8 +1522,11 @@ NFT_CT_PROTO_DST
15171522NFT_CT_PROTO_SRC
15181523NFT_CT_SECMARK
15191524NFT_CT_SRC
1525+ NFT_CT_SRC_IP
1526+ NFT_CT_SRC_IP6
15201527NFT_CT_STATE
15211528NFT_CT_STATUS
1529+ NFT_CT_ZONE
15221530NFT_DATA_RESERVED_MASK
15231531NFT_DATA_VALUE
15241532NFT_DATA_VALUE_MAXLEN
Original file line number Diff line number Diff line change @@ -191,9 +191,13 @@ NFT_CMP_LT
191191NFT_CMP_LTE
192192NFT_CMP_NEQ
193193NFT_CONTINUE
194+ NFT_CT_AVGPKT
194195NFT_CT_BYTES
195196NFT_CT_DIRECTION
196197NFT_CT_DST
198+ NFT_CT_DST_IP
199+ NFT_CT_DST_IP6
200+ NFT_CT_EVENTMASK
197201NFT_CT_EXPIRATION
198202NFT_CT_HELPER
199203NFT_CT_L3PROTOCOL
@@ -205,8 +209,11 @@ NFT_CT_PROTO_DST
205209NFT_CT_PROTO_SRC
206210NFT_CT_SECMARK
207211NFT_CT_SRC
212+ NFT_CT_SRC_IP
213+ NFT_CT_SRC_IP6
208214NFT_CT_STATE
209215NFT_CT_STATUS
216+ NFT_CT_ZONE
210217NFT_DATA_RESERVED_MASK
211218NFT_DATA_VALUE
212219NFT_DATA_VALUE_MAXLEN
Original file line number Diff line number Diff line change @@ -2572,6 +2572,14 @@ pub const NFT_CT_PROTO_DST: ::c_int = 12;
25722572pub const NFT_CT_LABELS : :: c_int = 13 ;
25732573pub const NFT_CT_PKTS : :: c_int = 14 ;
25742574pub const NFT_CT_BYTES : :: c_int = 15 ;
2575+ pub const NFT_CT_AVGPKT : :: c_int = 16 ;
2576+ pub const NFT_CT_ZONE : :: c_int = 17 ;
2577+ pub const NFT_CT_EVENTMASK : :: c_int = 18 ;
2578+ pub const NFT_CT_SRC_IP : :: c_int = 19 ;
2579+ pub const NFT_CT_DST_IP : :: c_int = 20 ;
2580+ pub const NFT_CT_SRC_IP6 : :: c_int = 21 ;
2581+ pub const NFT_CT_DST_IP6 : :: c_int = 22 ;
2582+ pub const NFT_CT_ID : :: c_int = 23 ;
25752583
25762584pub const NFT_LIMIT_PKTS : :: c_int = 0 ;
25772585pub const NFT_LIMIT_PKT_BYTES : :: c_int = 1 ;
Original file line number Diff line number Diff line change @@ -3980,6 +3980,13 @@ pub const NFT_CT_PROTO_DST: ::c_int = 12;
39803980pub const NFT_CT_LABELS : :: c_int = 13 ;
39813981pub const NFT_CT_PKTS : :: c_int = 14 ;
39823982pub const NFT_CT_BYTES : :: c_int = 15 ;
3983+ pub const NFT_CT_AVGPKT : :: c_int = 16 ;
3984+ pub const NFT_CT_ZONE : :: c_int = 17 ;
3985+ pub const NFT_CT_EVENTMASK : :: c_int = 18 ;
3986+ pub const NFT_CT_SRC_IP : :: c_int = 19 ;
3987+ pub const NFT_CT_DST_IP : :: c_int = 20 ;
3988+ pub const NFT_CT_SRC_IP6 : :: c_int = 21 ;
3989+ pub const NFT_CT_DST_IP6 : :: c_int = 22 ;
39833990
39843991pub const NFT_LIMIT_PKTS : :: c_int = 0 ;
39853992pub const NFT_LIMIT_PKT_BYTES : :: c_int = 1 ;
You can’t perform that action at this time.
0 commit comments