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

Configure Feed

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

at v2.6.28-rc9 19 lines 296 B view raw
1#ifndef __LINUX_TC_EM_TEXT_H 2#define __LINUX_TC_EM_TEXT_H 3 4#include <linux/pkt_cls.h> 5 6#define TC_EM_TEXT_ALGOSIZ 16 7 8struct tcf_em_text 9{ 10 char algo[TC_EM_TEXT_ALGOSIZ]; 11 __u16 from_offset; 12 __u16 to_offset; 13 __u16 pattern_len; 14 __u8 from_layer:4; 15 __u8 to_layer:4; 16 __u8 pad; 17}; 18 19#endif