aboutsummaryrefslogtreecommitdiffstats
path: root/doc/tshark.adoc
AgeCommit message (Collapse)AuthorFilesLines
2022-06-12tshark/docs: add -X read_format: example to view file internalsChuck Craft1-3/+8
2022-05-12docs: adoc migration bolding typos; Windows pipe name syntaxChuck Craft1-2/+2
2022-04-13tshark.adoc: update -z conv/endpoints descriptionsChuck Craft1-10/+10
2022-04-08WSUG/tshark: protocol summary and output with "-e"Chuck Craft1-4/+7
2022-02-11Differentiate `-c` from `-a packets:`David Perry1-2/+6
2022-02-09Specify directory for temporary capturesDavid Perry1-0/+8
2022-02-06doc: Document tshark -z statsJohn Thacker1-47/+142
Document the currently undocumented -z statistics for tshark. Note that all the stats added here exist in 3.6 as well. Fix #8353 (at least for now).
2022-02-02SOME/IP: Add stats information to tshark man fileDr. Lars Völker1-0/+14
2022-02-01docs: tshark: read filter -> display filterJohn Thacker1-12/+13
The beginning of the tshark manual talks about read filters and using the -R option. Switch all that to display filters and -Y, since that's the typical use now, with -R limited to two-pass analysis.
2022-01-31TShark, Wireshark: add some more documentation of "-i TCP@<host>:<port>".Guy Harris1-0/+3
Add a mention of the meaning of the "TCP@<host>:<port>" syntax in the text about the -i option.
2022-01-15Fix some spelling errorsMartin Mathieson1-1/+1
2022-01-13tshark: Add new long option --hexdump <hexoption>Jim Young1-0/+70
2022-01-02[Automatic update for 2022-01-02]Gerald Combs1-2/+2
Update manuf, services enterprise numbers, translations, and other items.
2021-12-27Docs: Document our diagnostic output options.Gerald Combs1-0/+2
Add docs/diagnostic-options.adoc, which is a snippet that documents our various --log-* options. Include it in the dumpcap, rawshark, and tshark man pages. Make the ws_log_print_usage output more consistent.
2021-12-22Corrects repeated words throughout the code.Moshe Kaplan1-1/+1
Repeated words were found with: egrep "(\b[a-zA-Z]+) +\1\b" . -Ir and then manually reviewed. Non-displayed strings (e.g., in comments) were also corrected, to ease future review.
2021-12-12doc: Add lbmr_* -z stats to tshark manualJohn Thacker1-0/+79
Add some more undocumented -z statistics. Ping #8353.
2021-12-10doc: Update tshark documents of stat optionsJohn Thacker1-0/+23
Lost one option when updating in the previous commit, restore
2021-12-10doc: Update tshark manual for undocumented -z statisticsJohn Thacker1-99/+386
This commit includes all statistics / taps that exist up through the 3.4.x release. Another commit will handle the ones added in the 3.6 branch. Mention that statistics are unaffected by the display filter (but are affected by capture and read filters, and usually have their own filters) at the top rather than repeating the same boilerplate in half the options. Ping #8353
2021-10-21docs/tshark: proper name is lopsided CamelCase (TShark)Chuck Craft1-12/+12
This is a first pass that covers the WSDG, WSUG, man page, a code comment and a README. Plenty left to do in the Debian files, a few Lua examples and other misc files.
2021-10-20Fix some spelling errorsMartin Mathieson1-1/+1
2021-10-19Docs: Move includes to the top of our man pages.Gerald Combs1-1/+1
Move our attributes.adoc includes to the very top of each man page. Older versions of Asciidoctor complain if it's not at the top. and additionally generate <file>.man instead of <file>.<section> if we don't explictly supply an output file.
2021-10-12docs: -z stats - bootp now dhcp; not all in man pageChuck Craft1-0/+1
2021-10-12docs: -z stats - bootp now dhcp; not all in man pageChuck Craft1-3/+2
2021-10-01Docs: Update some man page markup and remove pod2adoc.py.Gerald Combs1-67/+78
Remove pod2adoc.py since it's no longer needed. Add versions to the Wireshark, TShark, and Dumpcap man pages. Use definition lists in the TShark glossary descriptions. Other minor fixes.
2021-10-01Docs+Packaging: Convert our man pages to Asciidoctor.Gerald Combs1-741/+966
Convert doc/*.pod to Asciidoctor. This: * Means we use the same markup for our man pages, the guides, and release notes. * Lets us add versions to our man pages. * Gives us more formatting options, e.g. AsciiDoc supports `commands`, nested lists and makes it easy to include version information. The manpage backend doesn't seem to support tables very well, unfortunately. Convert our CMake configuration to produce *roff and html man pages using Asciidoctor. Add a "manarg" block macro which makes our synopses wrap correctly. Similar to the release notes, guides, and FAQ, if Asciidoctor isn't found the man pages won't be generated or installed. Move Asciidoctor to the list of package build dependencies in various places. This commit includes the conversion script (pod2adoc.py), which will be removed later. Line count sanity check: Man page .pod .adoc androiddump 260 280 asn2deb 93 105 capinfos 401 471 captype 54 55 ciscodump 241 269 dftest 42 42 dpauxmon 153 169 dumpcap 464 534 editcap 528 583 etwdump 136 156 extcap 157 181 idl2deb 91 103 idl2wrs 120 100 mergecap 206 207 mmdbresolve 75 75 randpkt 107 111 randpktdump 158 184 rawshark 558 610 reordercap 76 78 sdjournal 145 157 sshdump 272 302 text2pcap 274 312 tshark 2135 2360 udpdump 133 151 wireshark-filter 486 479 wireshark 2967 3420
2021-10-01Docs: Prep for POD to Asciidoctor conversion.Gerald Combs1-0/+2135
[skip ci] Rename each of our .pod files to .adoc. Add pod2adoc.py, which converts POD markup to Asciidoctor, along with customizations specific to us.