diff options
author | Gerald Combs <gerald@wireshark.org> | 2008-02-15 23:20:32 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2008-02-15 23:20:32 +0000 |
commit | 98bacb3556206a81f78c1568f7703f28ba137f91 (patch) | |
tree | 17f802e592331df786136ba5638c6844d94dc855 /doc/Makefile.nmake | |
parent | 6537c76fb62d583eb5f98308c15ae31c1712a31a (diff) | |
download | wireshark-98bacb3556206a81f78c1568f7703f28ba137f91.tar.gz wireshark-98bacb3556206a81f78c1568f7703f28ba137f91.tar.bz2 wireshark-98bacb3556206a81f78c1568f7703f28ba137f91.zip |
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 'doc/Makefile.nmake')
-rw-r--r-- | doc/Makefile.nmake | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/doc/Makefile.nmake b/doc/Makefile.nmake index 5214ebdb20..08e6b39870 100644 --- a/doc/Makefile.nmake +++ b/doc/Makefile.nmake @@ -27,10 +27,11 @@ include ../config.nmake doc: wireshark.html tshark.html wireshark-filter.html capinfos.html \ - editcap.html idl2wrs.html mergecap.html text2pcap.html dumpcap.html + editcap.html idl2wrs.html mergecap.html text2pcap.html dumpcap.html \ + rawshark.html man: wireshark.1 tshark.1 wireshark-filter.4 capinfos.1 editcap.1 \ - idl2wrs.1 mergecap.1 text2pcap.1 dumpcap.1 + idl2wrs.1 mergecap.1 text2pcap.1 dumpcap.1 rawshark.1 wireshark-tmp.pod: wireshark.pod ../AUTHORS-SHORT-FORMAT copy /B wireshark.pod + ..\AUTHORS-SHORT-FORMAT wireshark-tmp.pod @@ -161,6 +162,18 @@ dumpcap.html: dumpcap.pod ../config.h --noindex \ dumpcap.pod > dumpcap.html +rawshark.1: rawshark.pod ../config.h + $(POD2MAN) \ + --center="The Wireshark Network Analyzer" \ + --release=$(VERSION) \ + rawshark.pod > rawshark.1 + +rawshark.html: rawshark.pod ../config.h + $(POD2HTML) \ + --title="rawshark - The Wireshark Network Analyzer $(VERSION)" \ + --noindex \ + rawshark.pod > rawshark.html + clean: rm -f wireshark.html wireshark.1 wireshark-tmp.pod rm -f tshark.html tshark.1 @@ -171,6 +184,7 @@ clean: rm -f mergecap.html mergecap.1 rm -f text2pcap.html text2pcap.1 rm -f dumpcap.html dumpcap.1 + rm -f rawshark.html rawshark.1 rm -f pod2htm* distclean: clean |