aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.common
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2008-02-15 23:20:32 +0000
committerGerald Combs <gerald@wireshark.org>2008-02-15 23:20:32 +0000
commit98bacb3556206a81f78c1568f7703f28ba137f91 (patch)
tree17f802e592331df786136ba5638c6844d94dc855 /Makefile.common
parent6537c76fb62d583eb5f98308c15ae31c1712a31a (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". svn path=/trunk/; revision=24339
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 \