aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2012-09-24 11:59:49 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2012-09-24 11:59:49 +0000
commit05570017ba80e67d4eda7dae8637b59ec9c01a5d (patch)
treeba5b5dd16ec95d7cc09333b722ac6c703a5bda8d
parenta64c8ab1ac11678739285579aebe35d092e81884 (diff)
Include reordercap.exe.
svn path=/trunk/; revision=45096
-rw-r--r--packaging/nsis/wireshark.nsi7
1 files changed, 7 insertions, 0 deletions
diff --git a/packaging/nsis/wireshark.nsi b/packaging/nsis/wireshark.nsi
index c3b57a4636..1f95a2c135 100644
--- a/packaging/nsis/wireshark.nsi
+++ b/packaging/nsis/wireshark.nsi
@@ -887,6 +887,12 @@ File "${STAGING_DIR}\mergecap.exe"
File "..\..\doc\mergecap.html"
SectionEnd
+Section "Reordercap" SecReordercap
+;-------------------------------------------
+SetOutPath $INSTDIR
+File "${STAGING_DIR}\reordercap.exe"
+SectionEnd
+
Section "Capinfos" SecCapinfos
;-------------------------------------------
SetOutPath $INSTDIR
@@ -940,6 +946,7 @@ SectionEnd
!insertmacro MUI_DESCRIPTION_TEXT ${SecEditCap} "Editcap is a program that reads a capture file and writes some or all of the packets into another capture file."
!insertmacro MUI_DESCRIPTION_TEXT ${SecText2Pcap} "Text2pcap is a program that reads in an ASCII hex dump and writes the data into a libpcap-style capture file."
!insertmacro MUI_DESCRIPTION_TEXT ${SecMergecap} "Mergecap is a program that combines multiple saved capture files into a single output file"
+ !insertmacro MUI_DESCRIPTION_TEXT ${SecReordercap} "Reordercap is a program that copies frames from an input capture to an output capture after sorting by time."
!insertmacro MUI_DESCRIPTION_TEXT ${SecCapinfos} "Capinfos is a program that provides information on capture files."
!insertmacro MUI_DESCRIPTION_TEXT ${SecRawshark} "Rawshark is a raw packet filter."
!ifdef HHC_DIR