summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2013-05-05Update to cover Qt5 builds via cmake.Jörg Mayer1-0/+2
svn path=/trunk/; revision=49168
2013-05-03From Niels de Vos via ↵Jeff Morriss1-2/+4
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8626 : It is useful to see not only the minimal, maximum and average service time for RPC procedures, but also the total time these took. From me: add it to the man page. svn path=/trunk/; revision=49144
2013-05-01Remove singly-linked list from the wmem TODO list. Now that it has appendEvan Huus1-5/+0
all of the really important stuff is there, and emem doesn't provide it at all so it's not blocking migration. svn path=/trunk/; revision=49103
2013-04-27Add CppCheck to the list of things to run before submitting code for review.Evan Huus1-0/+5
svn path=/trunk/; revision=49077
2013-04-26Wmem string-buffer improvements:Evan Huus1-1/+0
- better tests - fix a bug caught by the better tests - implement append_c and append_unichar, with tests Wmem string-buffers now have feature parity with their emem equivalents, so remove them from the TODO list. svn path=/trunk/; revision=49060
2013-04-25Summarize the API listing in the wmem README. Doxygen in the header files willEvan Huus1-42/+28
be much easier to keep in sync with the actual code. svn path=/trunk/; revision=49040
2013-04-22Add a section to the wmem README about testing.Evan Huus1-0/+14
svn path=/trunk/; revision=48990
2013-04-19Add col. pseudo dissector to thsark manpage.Jörg Mayer1-2/+2
svn path=/trunk/; revision=48931
2013-04-16Add packet-PROTOABBREV.c to source distribution. Reorder some entries.Jeff Morriss1-6/+7
svn path=/trunk/; revision=48878
2013-04-15Major cleanup of skeleton dissector and related bits of README.developer.Evan Huus2-198/+217
Changes of note: - Removed the 'Copied from' notice, it's only relevant if they're *not* using the skeleton code. Added a paragraph to README.developer instead. - Exorcised all references to if (tree) and placed them in their own section at the bottom as an optimization. Hopefully this will be less confusing. svn path=/trunk/; revision=48861
2013-04-15Put the skeleton sample code from README.developer into its own file - it'sEvan Huus2-369/+361
much easier to edit/maintain that way as well as much easier to copy for a new dissector. Explicitly don't set the SVN id tag since this is a template. svn path=/trunk/; revision=48860
2013-04-13list the new option -k in the capinfos manpageMartin Kaiser1-0/+5
svn path=/trunk/; revision=48838
2013-04-05Coalesce "-G fields2" and "-G fields3" into "-G fields", as discussed on -dev.Chris Maynard1-15/+7
See: http://www.wireshark.org/lists/wireshark-dev/201304/msg00015.html svn path=/trunk/; revision=48753
2013-04-04As forewarned at ↵Chris Maynard1-1/+1
http://www.wireshark.org/lists/wireshark-dev/201304/msg00009.html, change the default snaplen to 65KiB-1. While we're at it, push the max packet size to that value as well. Also: convert the few tabs to spaces and add modelines. svn path=/trunk/; revision=48738
2013-03-30Update -2, -R and -Y to behave consistently as per the concensus reached onEvan Huus1-15/+17
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8223 Mention the new -Y flag and associated changes in the release notes. svn path=/trunk/; revision=48654
2013-03-30Move wireshark's display filter flag to -Y for consistency with tshark.Evan Huus1-5/+5
Part of https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8223 svn path=/trunk/; revision=48653
2013-03-30list the new file format on the manpageMartin Kaiser1-0/+3
svn path=/trunk/; revision=48648
2013-03-28Add some missing tvb_get_'s, proto_tree_add_'s, fix args and change all ↵Chris Maynard1-82/+110
little_endian's to encoding. Some detailed descriptions are still missing though. svn path=/trunk/; revision=48629
2013-03-27From Hadriel Kaplan via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8223Evan Huus1-2/+23
Add a 2-pass display-filter flag to tshark so that reassembly and other forward- looking dissections can be used with filters. It's a bit of a hack, but this entire area of 2-pass analysis etc. is a giant pile of hacks to begin with and needs cleaning up. For now just having this feature is a big enough win. svn path=/trunk/; revision=48589
2013-03-21Updated tshark man page and release notes to document the change in '-x' ↵Chris Maynard1-5/+4
behavior with r45715. svn path=/trunk/; revision=48456
2013-03-11Document the wmem override environment variable in the man pages, and improveEvan Huus4-7/+51
README.wmem in a couple of places. svn path=/trunk/; revision=48251
2013-03-11Followup to r48218: remove documentation of the WIRESHARK_DEBUG_USE_SLICES ↵Jeff Morriss3-18/+0
environment variable. svn path=/trunk/; revision=48249
2013-03-10Make the memory limit (in bytes or packets) used for storing packetsMichael Tüxen1-0/+16
configurable via command line options and print specific drop numbers at the end. This allows to tune the buffering when using multiple threads. This also fixes a logic arrow in enforcing the limits. The patch for the enhanced counters is from Anders Broman. svn path=/trunk/; revision=48223
2013-03-10Add -t to synopsis.Michael Tüxen1-0/+1
svn path=/trunk/; revision=48221
2013-03-09Remove the wmem slab. It was an optimization mimicking the emem slabEvan Huus1-7/+1
(removed in r48218) which did nothing particularly useful. Also lets us remove another debugging environment variable. svn path=/trunk/; revision=48219
2013-03-06Add asn2deb.pod and idl2deb.pod to the source distribution.Jeff Morriss1-2/+4
svn path=/trunk/; revision=48136
2013-03-06Don't use (GNU-specific) pattern rules: use old-fashioned suffix rules instead.Jeff Morriss1-164/+61
Since there's now a suffix rule for the .1 man pages, don't create explicit rules for them. (Leave a comment explaining why the .html and .4 rules need to stay.) Simplify CLEANFILES: there's no need to list each man page, just remove them all. svn path=/trunk/; revision=48135
2013-03-06Fix distcheck in autotools based buildsBalint Reczey1-2/+2
svn path=/trunk/; revision=48134
2013-03-06Merge asn2deb and idl2deb from official Debian packageBalint Reczey4-3/+196
svn path=/trunk/; revision=48133
2013-03-04From Steve Magnani via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8339Evan Huus1-9/+34
This patch adds a new public API, proto_tree_add_bitmask_len(), identical to proto_tree_add_bitmask() but using a caller-supplied length rather than an inferred one. The underlying proto_item_add_bitmask_tree() code is modified to display only fields for which all defined bits are available, and to ignore bits that have no corresponding defined field ("forward compatibility" cases). From me: minor edits, see the bug for more details. svn path=/trunk/; revision=48049
2013-03-01Export libwireshark symbols using WS_DLL_PUBLIC defineBalint Reczey2-3/+3
Also remove old WS_VAR_IMPORT define and related Makefile magic everywhere in the project. svn path=/trunk/; revision=47992
2013-02-28Default capture buffer size is now 2MB.Jeff Morriss3-6/+6
svn path=/trunk/; revision=47937
2013-02-26Print human-readable statistics by default. Raw values can be printedGerald Combs1-0/+7
using "-M". Based on a suggestion by Hansang Bae. svn path=/trunk/; revision=47900
2013-02-25Add README for LuaMichael Mann1-0/+456
From Hadriel Kaplan, part of bug 8393 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8393) svn path=/trunk/; revision=47875
2013-02-23Update README.qt with last change in qtshark buildAlexis La Goutte1-5/+5
svn path=/trunk/; revision=47836
2013-02-21mention gcrypt wrapper in README.developerMartin Kaiser1-0/+5
svn path=/trunk/; revision=47812
2013-02-20From Edwin Groothuis via ↵Chris Maynard1-0/+26
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8353 : Document http-related '-z' statistics; also add document -z help. From me: Don't print an error message for "-z help". (Only "http,stat," is suitable for backport to 1.8 and 1.6) svn path=/trunk/; revision=47763
2013-02-11Fix two bugs in the example code that I revised.Bill Meier1-2/+2
svn path=/trunk/; revision=47626
2013-02-11Remove a _U_ which I should not have used.Bill Meier1-1/+1
svn path=/trunk/; revision=47625
2013-02-11Well, that didn't work (keyword substitution, that is). Try now.Chris Maynard1-3/+3
svn path=/trunk/; revision=47623
2013-02-11Fix a couple of typos. Set svn properties.Chris Maynard1-5/+5
svn path=/trunk/; revision=47622
2013-02-11Update: Primarily to suggest calling conversation_set_dissector()Bill Meier1-115/+90
once a packet has been identified as being part of a particular protocol. svn path=/trunk/; revision=47621
2013-02-08Update wmem docsEvan Huus1-2/+3
svn path=/trunk/; revision=47549
2013-02-06Remove more unnecessary defintions.Gerald Combs1-2/+0
svn path=/trunk/; revision=47527
2013-02-04At least as I readGuy Harris1-4/+4
http://www.gnu.org/software/automake/manual/automake.html#index-g_t_0040code_007bAM_005fDEFAULT_005fVERBOSITY_007d-1018 this is the way to do the silent-rules stuff; using nested variable expansion in Makefile.am causes warnings when running autogen.sh. svn path=/trunk/; revision=47474
2013-02-04Prettify the silent build.Gerald Combs1-26/+36
svn path=/trunk/; revision=47468
2013-02-03describe the -t option in the dumpcap manpageMartin Kaiser1-0/+4
(use the same text that dumpcap -V prints) svn path=/trunk/; revision=47455
2013-02-01Add $(AM_V_GEN) in a few more places.Gerald Combs1-4/+4
svn path=/trunk/; revision=47434
2013-02-01Add support for silent builds.Gerald Combs1-26/+26
svn path=/trunk/; revision=47431
2013-02-01Fix the dev guide to use the correct indent (Tab => 4 Spaces) and add ↵Alexis La Goutte1-966/+977
Modelines info svn path=/trunk/; revision=47415