~ubuntu-branches/ubuntu/saucy/clamav/saucy-backports

« back to all changes in this revision

Viewing changes to libclamav/dconf.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman
  • Date: 2014-07-15 01:08:10 UTC
  • mfrom: (0.35.47 sid)
  • Revision ID: package-import@ubuntu.com-20140715010810-ru66ek4fun2iseba
Tags: 0.98.4+dfsg-2~ubuntu13.10.1
No-change backport to saucy (LP: #1341962)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 *  Copyright (C) 2007-2008 Sourcefire, Inc.
 
2
 *  Copyright (C) 2014 Cisco and/or its affiliates. All rights reserved.
 
3
 *  Copyright (C) 2007-2013 Sourcefire, Inc.
3
4
 *
4
5
 *  Authors: Tomasz Kojm
5
6
 *
40
41
    uint32_t other;
41
42
    uint32_t phishing;
42
43
    uint32_t bytecode;
 
44
    uint32_t stats;
43
45
};
44
46
 
45
47
/* PE flags */
62
64
#define PE_CONF_CATALOG     0x10000
63
65
#define PE_CONF_DISABLECERT 0x20000
64
66
#define PE_CONF_DUMPCERT    0x40000
 
67
#define PE_CONF_MATCHICON   0x80000
65
68
 
66
69
/* Archive flags */
67
70
#define ARCH_CONF_RAR       0x1
110
113
#define OTHER_CONF_MYDOOMLOG    0x40
111
114
#define OTHER_CONF_PREFILTERING 0x80
112
115
#define OTHER_CONF_PDFNAMEOBJ   0x100
 
116
#define OTHER_CONF_PRTNINTXN    0x200
113
117
 
114
118
/* Phishing flags */
115
119
#define PHISHING_CONF_ENGINE   0x1
121
125
#define BYTECODE_JIT_PPC 0x4
122
126
#define BYTECODE_JIT_ARM 0x8
123
127
 
 
128
/* Stats/Intel flags */
 
129
#define DCONF_STATS_DISABLED            0x1
 
130
#define DCONF_STATS_PE_SECTION_DISABLED 0x2
 
131
 
124
132
#define BYTECODE_ENGINE_MASK (BYTECODE_INTERPRETER | BYTECODE_JIT_X86 | BYTECODE_JIT_PPC | BYTECODE_JIT_ARM)
125
133
 
126
134
#ifdef USE_MPOOL