-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwireshark.patch
108 lines (106 loc) · 3.37 KB
/
wireshark.patch
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
commit 897e0017d6dfba2a8045ba858e018e161c108d49
Author: Martin Gallo <[email protected]>
Date: Fri Jan 23 17:09:43 2015 -0300
Configured sap plugin.
diff --git a/CMakeLists.txt b/CMakeLists.txt
index eb50acc..ee904b4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -704,6 +704,7 @@ if(ENABLE_PLUGINS)
plugins/mate
plugins/opcua
plugins/profinet
+ plugins/sap
plugins/stats_tree
plugins/unistim
plugins/wimax
diff --git a/Makefile.am b/Makefile.am
index d813784..1557e65 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -306,6 +306,7 @@ plugin_ldadd = $(_CUSTOM_plugin_ldadd_) \
-dlopen plugins/mate/mate.la \
-dlopen plugins/opcua/opcua.la \
-dlopen plugins/profinet/profinet.la \
+ -dlopen plugins/sap/sap.la \
-dlopen plugins/stats_tree/stats_tree.la \
-dlopen plugins/unistim/unistim.la \
-dlopen plugins/wimax/wimax.la \
diff --git a/configure.ac b/configure.ac
index e6aa52f..e175a7b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2966,6 +2966,7 @@ AC_OUTPUT(
plugins/mate/Makefile
plugins/opcua/Makefile
plugins/profinet/Makefile
+ plugins/sap/Makefile
plugins/stats_tree/Makefile
plugins/unistim/Makefile
plugins/wimax/Makefile
diff --git a/epan/Makefile.am b/epan/Makefile.am
index 0739c6d..5bc372f 100644
--- a/epan/Makefile.am
+++ b/epan/Makefile.am
@@ -235,6 +235,13 @@ plugin_src = \
../plugins/irda/packet-irda.c \
../plugins/m2m/packet-m2m.c \
../plugins/m2m/wimax_tlv.c \
+ ../plugins/sap/packet-sapdiag.c \
+ ../plugins/sap/packet-sapenqueue.c \
+ ../plugins/sap/packet-saprouter.c \
+ ../plugins/sap/packet-sapprotocol.c \
+ ../plugins/sap/packet-saprfc.c \
+ ../plugins/sap/packet-sapms.c \
+ ../plugins/sap/packet-sapsnc.c \
../plugins/wimax/crc.c \
../plugins/wimax/crc_data.c \
../plugins/wimax/mac_hd_generic_decoder.c \
diff --git a/packaging/nsis/Makefile.nmake b/packaging/nsis/Makefile.nmake
index eb037e6..6040b32 100644
--- a/packaging/nsis/Makefile.nmake
+++ b/packaging/nsis/Makefile.nmake
@@ -51,6 +51,7 @@ PLUGINS= \
../../plugins/mate/mate.dll \
../../plugins/opcua/opcua.dll \
../../plugins/profinet/profinet.dll \
+ ../../plugins/sap/sap.dll \
../../plugins/stats_tree/stats_tree.dll \
../../plugins/unistim/unistim.dll \
../../plugins/wimax/wimax.dll \
diff --git a/packaging/nsis/wireshark.nsi b/packaging/nsis/wireshark.nsi
index 6d4455b..6a62483 100644
--- a/packaging/nsis/wireshark.nsi
+++ b/packaging/nsis/wireshark.nsi
@@ -983,6 +983,7 @@ File "${STAGING_DIR}\plugins\${VERSION}\irda.dll"
File "${STAGING_DIR}\plugins\${VERSION}\m2m.dll"
File "${STAGING_DIR}\plugins\${VERSION}\opcua.dll"
File "${STAGING_DIR}\plugins\${VERSION}\profinet.dll"
+File "${STAGING_DIR}\plugins\${VERSION}\sap.dll"
File "${STAGING_DIR}\plugins\${VERSION}\unistim.dll"
File "${STAGING_DIR}\plugins\${VERSION}\wimax.dll"
File "${STAGING_DIR}\plugins\${VERSION}\wimaxasncp.dll"
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index 0cca3cd..a588147 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -30,6 +30,7 @@ SUBDIRS = $(_CUSTOM_SUBDIRS_) \
mate \
opcua \
profinet \
+ sap \
stats_tree \
unistim \
wimax \
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake
index 2bf5a9c..6e675a7 100644
--- a/plugins/Makefile.nmake
+++ b/plugins/Makefile.nmake
@@ -13,6 +13,7 @@ PLUGIN_LIST = \
mate \
opcua \
profinet \
+ sap \
stats_tree \
unistim \
wimax \