blob: 59b515d32bb45921b58e150038f9a489d2b91e3a [file] [log] [blame]
Felix Fietkau22a5dc02015-01-18 16:35:14 -05001#ifndef __NET_TC_CONNMARK_H
2#define __NET_TC_CONNMARK_H
3
4#include <net/act_api.h>
5
6struct tcf_connmark_info {
WANG Congec0595c2016-07-25 16:09:42 -07007 struct tc_action common;
Eric W. Biedermana4ffe312015-09-18 14:33:03 -05008 struct net *net;
Felix Fietkau22a5dc02015-01-18 16:35:14 -05009 u16 zone;
10};
11
WANG Conga85a9702016-07-25 16:09:41 -070012#define to_connmark(a) ((struct tcf_connmark_info *)a)
Felix Fietkau22a5dc02015-01-18 16:35:14 -050013
14#endif /* __NET_TC_CONNMARK_H */