-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcmp_includefiles.sh
53 lines (48 loc) · 1.03 KB
/
cmp_includefiles.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#! /bin/sh
#
# verify that the preprocessor's header files are in sync with snort release
#
snort_src_dir=/home/mschuett/ipv6/codebase/trunk/snort
for f in attribute_table_api.h \
bitop.h \
cpuclock.h \
idle_processing.h \
ipv6_port.h \
mempool.h \
obfuscation.h \
preprocids.h \
profiler.h \
segment_mem.h \
sfPolicy.h \
sfPolicyUserData.h \
sf_decompression.h \
sf_dynamic_common.h \
sf_dynamic_define.h \
sf_dynamic_engine.h \
sf_dynamic_meta.h \
sf_dynamic_preproc_lib.h \
sf_dynamic_preprocessor.h \
sf_ip.h \
sf_protocols.h \
sf_sdlist_types.h \
sf_snort_packet.h \
sf_snort_plugin_api.h \
sfcontrol.h \
sfhashfcn.h \
sfrt.h \
sfrt_dir.h \
sfrt_flat.h \
sfrt_flat_dir.h \
sfrt_trie.h \
snort_bounds.h \
snort_debug.h \
str_search.h \
stream_api.h; do
cmp include/dynamic_preproc/$f ${snort_src_dir}/src/dynamic-preprocessors/include/$f
done
for f in sfcommon.h ssl.h; do
cmp include/dynamic_preproc/$f ${snort_src_dir}/src/dynamic-preprocessors/libs/$f
done
for f in sf_types.h snort_debug.h; do
cmp include/$f ${snort_src_dir}/src/$f
done