Imported Upstream version 2.7
[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         '\000', '\000', '\002', '\003', '\004', '\005', '\006', '\007',
25         '\010', '\011', '\012', '\013', '\014', '\015', '\016', '\017',
26         '\020', '\021', '\022', '\023', '\024', '\025', '\026', '\027',
27         '\030', '\031', '\032', '\033', '\034', '\035', '\036', '\037',
28         '\040', '\041', '\042', '\043', '\044', '\045', '\046', '\047',
29         '\001', '\001', '\052', '\053', '\054', '\001', '\001', '\001',
30         '\001', '\001', '\001', '\001', '\001', '\001', '\001', '\001',
31         '\001', '\001', '\072', '\073', '\074', '\075', '\076', '\077',
32         '\001', '\001', '\001', '\001', '\001', '\001', '\001', '\001',
33         '\001', '\001', '\001', '\001', '\001', '\001', '\001', '\001',
34         '\001', '\001', '\001', '\001', '\001', '\001', '\001', '\001',
35         '\001', '\001', '\001', '\133', '\134', '\135', '\136', '\001',
36         '\140', '\001', '\001', '\001', '\001', '\001', '\001', '\001',
37         '\001', '\001', '\001', '\001', '\001', '\001', '\001', '\001',
38         '\001', '\001', '\001', '\001', '\001', '\001', '\001', '\001',
39         '\001', '\001', '\001', '\173', '\174', '\175', '\176', '\177',
40         '\200', '\201', '\202', '\203', '\204', '\205', '\206', '\207',
41         '\210', '\211', '\212', '\213', '\214', '\215', '\216', '\217',
42         '\220', '\221', '\222', '\223', '\224', '\225', '\226', '\227',
43         '\230', '\231', '\232', '\233', '\234', '\235', '\236', '\237',
44         '\240', '\241', '\242', '\243', '\244', '\245', '\246', '\247',
45         '\250', '\251', '\252', '\253', '\254', '\255', '\256', '\257',
46         '\260', '\261', '\262', '\263', '\264', '\265', '\266', '\267',
47         '\270', '\271', '\272', '\273', '\274', '\275', '\276', '\277',
48         '\300', '\301', '\302', '\303', '\304', '\305', '\306', '\307',
49         '\310', '\311', '\312', '\313', '\314', '\315', '\316', '\317',
50         '\320', '\321', '\322', '\323', '\324', '\325', '\326', '\327',
51         '\330', '\331', '\332', '\333', '\334', '\335', '\336', '\337',
52         '\340', '\341', '\342', '\343', '\344', '\345', '\346', '\347',
53         '\350', '\351', '\352', '\353', '\354', '\355', '\356', '\357',
54         '\360', '\361', '\362', '\363', '\364', '\365', '\366', '\367',
55         '\360', '\361', '\362', '\363', '\364', '\365', '\366', '\367',
56     };
57
58
59 #endif
60
61
62 /* EOF */