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 @@ -1500,11 +1500,16 @@ NFT_CMP_LT
15001500NFT_CMP_LTE
15011501NFT_CMP_NEQ
15021502NFT_CONTINUE
1503+ NFT_CT_AVGPKT
15031504NFT_CT_BYTES
15041505NFT_CT_DIRECTION
15051506NFT_CT_DST
1507+ NFT_CT_DST_IP
1508+ NFT_CT_DST_IP6
1509+ NFT_CT_EVENTMASK
15061510NFT_CT_EXPIRATION
15071511NFT_CT_HELPER
1512+ NFT_CT_ID
15081513NFT_CT_L3PROTOCOL
15091514NFT_CT_LABELS
15101515NFT_CT_MARK
@@ -1514,8 +1519,11 @@ NFT_CT_PROTO_DST
15141519NFT_CT_PROTO_SRC
15151520NFT_CT_SECMARK
15161521NFT_CT_SRC
1522+ NFT_CT_SRC_IP
1523+ NFT_CT_SRC_IP6
15171524NFT_CT_STATE
15181525NFT_CT_STATUS
1526+ NFT_CT_ZONE
15191527NFT_DATA_RESERVED_MASK
15201528NFT_DATA_VALUE
15211529NFT_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 @@ -2558,6 +2558,14 @@ pub const NFT_CT_PROTO_DST: ::c_int = 12;
25582558pub const NFT_CT_LABELS : :: c_int = 13 ;
25592559pub const NFT_CT_PKTS : :: c_int = 14 ;
25602560pub const NFT_CT_BYTES : :: c_int = 15 ;
2561+ pub const NFT_CT_AVGPKT : :: c_int = 16 ;
2562+ pub const NFT_CT_ZONE : :: c_int = 17 ;
2563+ pub const NFT_CT_EVENTMASK : :: c_int = 18 ;
2564+ pub const NFT_CT_SRC_IP : :: c_int = 19 ;
2565+ pub const NFT_CT_DST_IP : :: c_int = 20 ;
2566+ pub const NFT_CT_SRC_IP6 : :: c_int = 21 ;
2567+ pub const NFT_CT_DST_IP6 : :: c_int = 22 ;
2568+ pub const NFT_CT_ID : :: c_int = 23 ;
25612569
25622570pub const NFT_LIMIT_PKTS : :: c_int = 0 ;
25632571pub const NFT_LIMIT_PKT_BYTES : :: c_int = 1 ;
Original file line number Diff line number Diff line change @@ -4429,6 +4429,13 @@ pub const NFT_CT_PROTO_DST: ::c_int = 12;
44294429pub const NFT_CT_LABELS : :: c_int = 13 ;
44304430pub const NFT_CT_PKTS : :: c_int = 14 ;
44314431pub const NFT_CT_BYTES : :: c_int = 15 ;
4432+ pub const NFT_CT_AVGPKT : :: c_int = 16 ;
4433+ pub const NFT_CT_ZONE : :: c_int = 17 ;
4434+ pub const NFT_CT_EVENTMASK : :: c_int = 18 ;
4435+ pub const NFT_CT_SRC_IP : :: c_int = 19 ;
4436+ pub const NFT_CT_DST_IP : :: c_int = 20 ;
4437+ pub const NFT_CT_SRC_IP6 : :: c_int = 21 ;
4438+ pub const NFT_CT_DST_IP6 : :: c_int = 22 ;
44324439
44334440pub const NFT_LIMIT_PKTS : :: c_int = 0 ;
44344441pub const NFT_LIMIT_PKT_BYTES : :: c_int = 1 ;
You can’t perform that action at this time.
0 commit comments