aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.common
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2008-02-15 23:20:32 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2008-02-15 23:20:32 +0000
commit2c287e39bf70bef9779cae6a32af1597f292eeb7 (patch)
tree17f802e592331df786136ba5638c6844d94dc855 /Makefile.common
parent7fbb4cba9a04ad7d886a8b8707ab85a80219ff6e (diff)
Add rawshark, a utility that, when given raw pcap-formatted packets and
a list of fields, prints the field values found in each packet. Packet data can be specified as a libpcap DLT, e.g. "EN10MB" or an upper-layer protocol, e.g. "http". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24339 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.common b/Makefile.common
index 0ba4b0aacf..72c4e65807 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -191,6 +191,18 @@ tshark_SOURCES = \
tshark-tap-register.c \
tshark.c
+# rawshark specifics
+rawshark_SOURCES = \
+ $(WIRESHARK_COMMON_SRC) \
+ capture_opts.c \
+ capture_loop.c \
+ capture_stop_conditions.c \
+ conditions.c \
+ pcapio.c \
+ ringbuffer.c \
+ tempfile.c \
+ rawshark.c
+
# text2pcap specifics
text2pcap_SOURCES = \
text2pcap.c \