dodan override za lintian
[ossec-hids.git] / src / os_regex / os_regex_maps.h
1 /* @(#) $Id: ./src/os_regex/os_regex_maps.h, 2011/09/08 dcid Exp $
2  */
3
4 /* Copyright (C) 2009 Trend Micro Inc.
5  * All right reserved.
6  *
7  * This program is a free software; you can redistribute it
8  * and/or modify it under the terms of the GNU General Public
9  * License (version 2) as published by the FSF - Free Software
10  * Foundation.
11  */
12
13
14 #ifndef __OS_REGEX_MAPS_H
15 #define __OS_REGEX_MAPS_H
16
17
18
19 /* Hostname charmap.
20  * Available chars: a-z, A-Z, 0-9, -, _, ., @ /
21  */
22 static const unsigned char hostname_map[] =
23    {
24         0, 0, 2, 3, 4, 5, 6, 7,
25         8, 9, 10, 11, 12, 13, 14, 15,
26         16, 17, 18, 19, 20, 21, 22, 23,
27         24, 25, 26, 27, 28, 29, 30, 31,
28         32, 33, 34, 35, 36, 37, 38, 39,
29         1, 1, 42, 43, 44, 1, 1, 1,
30         1, 1, 1, 1, 1, 1, 1, 1,
31         1, 1, 58, 59, 60, 61, 62, 63,
32         1, 1, 1, 1, 1, 1, 1, 1,
33         1, 1, 1, 1, 1, 1, 1, 1,
34         1, 1, 1, 1, 1, 1, 1, 1,
35         1, 1, 1, 91, 92, 93, 94, 1,
36         96, 1, 1, 1, 1, 1, 1, 1,
37         1, 1, 1, 1, 1, 1, 1, 1,
38         1, 1, 1, 1, 1, 1, 1, 1,
39         1, 1, 1, 123, 124, 125, 126, 127,
40         128, 129, 130, 131, 132, 133, 134, 135,
41         136, 137, 138, 139, 140, 141, 142, 143,
42         144, 145, 146, 147, 148, 149, 150, 151,
43         152, 153, 154, 155, 156, 157, 158, 159,
44         160, 161, 162, 163, 164, 165, 166, 167,
45         168, 169, 170, 171, 172, 173, 174, 175,
46         176, 177, 178, 179, 180, 181, 182, 183,
47         184, 185, 186, 187, 188, 189, 190, 191,
48         192, 193, 194, 195, 196, 197, 198, 199,
49         200, 201, 202, 203, 204, 205, 206, 207,
50         208, 209, 210, 211, 212, 213, 214, 215,
51         216, 217, 218, 219, 220, 221, 222, 223,
52         224, 225, 226, 227, 228, 229, 230, 231,
53         232, 233, 234, 235, 236, 237, 238, 239,
54         240, 241, 242, 243, 244, 245, 246, 247,
55         240, 241, 242, 243, 244, 245, 246, 247,
56     };
57
58
59 #endif
60
61
62 /* EOF */