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 v4.4 22 lines 337 B view raw
1#ifndef __UAPI_TC_CONNMARK_H 2#define __UAPI_TC_CONNMARK_H 3 4#include <linux/types.h> 5#include <linux/pkt_cls.h> 6 7#define TCA_ACT_CONNMARK 14 8 9struct tc_connmark { 10 tc_gen; 11 __u16 zone; 12}; 13 14enum { 15 TCA_CONNMARK_UNSPEC, 16 TCA_CONNMARK_PARMS, 17 TCA_CONNMARK_TM, 18 __TCA_CONNMARK_MAX 19}; 20#define TCA_CONNMARK_MAX (__TCA_CONNMARK_MAX - 1) 21 22#endif