OpenCores
URL https://opencores.org/ocsvn/hf-risc/hf-risc/trunk

Subversion Repositories hf-risc

[/] [hf-risc/] [trunk/] [tools/] [riscv-gnu-toolchain-master/] [linux-headers/] [include/] [linux/] [netfilter/] [xt_string.h] - Blame information for rev 13

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 13 serginhofr
#ifndef _XT_STRING_H
2
#define _XT_STRING_H
3
 
4
#include <linux/types.h>
5
 
6
#define XT_STRING_MAX_PATTERN_SIZE 128
7
#define XT_STRING_MAX_ALGO_NAME_SIZE 16
8
 
9
enum {
10
        XT_STRING_FLAG_INVERT           = 0x01,
11
        XT_STRING_FLAG_IGNORECASE       = 0x02
12
};
13
 
14
struct xt_string_info {
15
        __u16 from_offset;
16
        __u16 to_offset;
17
        char      algo[XT_STRING_MAX_ALGO_NAME_SIZE];
18
        char      pattern[XT_STRING_MAX_PATTERN_SIZE];
19
        __u8  patlen;
20
        union {
21
                struct {
22
                        __u8  invert;
23
                } v0;
24
 
25
                struct {
26
                        __u8  flags;
27
                } v1;
28
        } u;
29
 
30
        /* Used internally by the kernel */
31
        struct ts_config __attribute__((aligned(8))) *config;
32
};
33
 
34
#endif /*_XT_STRING_H*/

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.