Initial commit of Content Screening and Reputation Framework.
[platform/upstream/csr-framework.git] / test / UrlInfo.h
1 /*
2     Copyright (c) 2013, McAfee, Inc.
3     
4     All rights reserved.
5     
6     Redistribution and use in source and binary forms, with or without modification,
7     are permitted provided that the following conditions are met:
8     
9     Redistributions of source code must retain the above copyright notice, this list
10     of conditions and the following disclaimer.
11     
12     Redistributions in binary form must reproduce the above copyright notice, this
13     list of conditions and the following disclaimer in the documentation and/or other
14     materials provided with the distribution.
15     
16     Neither the name of McAfee, Inc. nor the names of its contributors may be used
17     to endorse or promote products derived from this software without specific prior
18     written permission.
19     
20     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
21     ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22     WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23     IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
24     INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25     BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27     LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
28     OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
29     OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 #ifndef URL_INFO_H
33 #define URL_INFO_H
34
35 #ifdef __cplusplus 
36 extern "C" {
37 #endif
38
39 #define MAX_CATEGORIES 8
40
41 #define URL_0_0 "http://www.screensavers.com"
42 #define URL_1_0 "http://www.google.com"
43 #define URL_2_0 "http://www.targetingnow.com/delivery"
44 #define URL_3_0 "www.zcrack.com"
45
46 TWPCategories CATEGORIES_0_0_1[2] =
47 {
48     TWP_Malicioussites,
49     TWP_OverallRiskHigh
50 };
51
52 TWPCategories CATEGORIES_0_0_0[2] =
53 {
54     TWP_Pharmacy,
55     TWP_Restaurants
56 };
57
58 TWPCategories CATEGORIES_0_0_2[2] =
59 {
60     TWP_Malicioussites,
61     TWP_OverallRiskHigh
62 };
63
64 TWPCategories VIOLATIONS_0_0_2[2] =
65 {
66     TWP_Malicioussites,
67     TWP_OverallRiskHigh
68 };
69
70 #define SCORE_0_0 127
71 #define CATEGORY_0_0_0 TWP_Pharmacy
72 #define CATEGORY_0_0_1 TWP_OverallRiskHigh
73
74 #ifdef __cplusplus 
75 }
76 #endif
77
78 #endif /* URL_INFO_H */
79