Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
* @TYPE_IFINDEX: interface index (integer subtype)
* @TYPE_ARPHRD: interface type (integer subtype)
* @TYPE_REALM: routing realm (integer subtype)
- * @TYPE_TC_HANDLE: TC handle (integer subtype)
+ * @TYPE_CLASSID: TC classid (integer subtype)
* @TYPE_UID: user ID (integer subtype)
* @TYPE_GID: group ID (integer subtype)
* @TYPE_CT_STATE: conntrack state (bitmask subtype)
TYPE_IFINDEX,
TYPE_ARPHRD,
TYPE_REALM,
- TYPE_TC_HANDLE,
+ TYPE_CLASSID,
TYPE_UID,
TYPE_GID,
TYPE_CT_STATE,
}
static const struct datatype tchandle_type = {
- .type = TYPE_TC_HANDLE,
- .name = "tc_handle",
- .desc = "TC handle",
+ .type = TYPE_CLASSID,
+ .name = "classid",
+ .desc = "TC classid",
.byteorder = BYTEORDER_HOST_ENDIAN,
.size = 4 * BITS_PER_BYTE,
.basetype = &integer_type,