Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at be2d3ecedd9911fbfd7e55cc9ceac5f8b79ae4cf 22 lines 390 B view raw
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2#ifndef __UAPI_TC_CONNMARK_H 3#define __UAPI_TC_CONNMARK_H 4 5#include <linux/types.h> 6#include <linux/pkt_cls.h> 7 8struct tc_connmark { 9 tc_gen; 10 __u16 zone; 11}; 12 13enum { 14 TCA_CONNMARK_UNSPEC, 15 TCA_CONNMARK_PARMS, 16 TCA_CONNMARK_TM, 17 TCA_CONNMARK_PAD, 18 __TCA_CONNMARK_MAX 19}; 20#define TCA_CONNMARK_MAX (__TCA_CONNMARK_MAX - 1) 21 22#endif