aboutsummaryrefslogtreecommitdiffstats
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2009-04-27Add -n option to dumpcap. It will save the capture files inMichael Tüxen1-0/+7
pcapng format instead of pcap. The default is to use pcap. svn path=/trunk/; revision=28170
2009-04-17Add a note about LLP64 portability.Gerald Combs1-0/+41
svn path=/trunk/; revision=28080
2009-04-17From Jim Young <jyoung@gsu.edu>:Balint Reczey1-15/+99
- New duplicate packet removal options for editcap https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3168 I changed the patch a bit: - Adapted to 80 chars wide screen - Merged -w and -W parameters svn path=/trunk/; revision=28074
2009-04-17When building the wireshark-filter documentation on Windows, try toGerald Combs2-21/+37
figure out if we can run TShark. If we can't, just insert the dfref URL in the documentation. svn path=/trunk/; revision=28071
2009-04-14Add a note for -z io,stat,<interval>,<filter>,<filter>,... to use "." as Sake Blok1-3/+7
a decimal separator, as the "," will make the command fail. (of course it would be nice to have this fixed, but for now, it at least informs the user how to work around the issue) svn path=/trunk/; revision=28046
2009-04-08Add some more "copy" functionality:Sake Blok1-0/+15
- Enabled "Copy Description" in the main menu and gave it accelerator key CTRL+SHIFT+D - Added "Copy Fieldname" to copy the fieldname of the selected field in the detail view (Acc.Key: CTRL+SHIFT+F) - Added "Copy Value" to copy the value of the selected field in the detail view (Acc.Key: CTRL+SHIFT+V) - Updated documentation to reflect the changes svn path=/trunk/; revision=28006
2009-04-01Describe the format of libpcap records a little better - no, it's notGuy Harris1-1/+3
valid C89, but it's more accurate (and lets you know that the packet data has only caplen bytes). Fix up a list. svn path=/trunk/; revision=27925
2009-03-31Rawshark fixes from Duncan Salerno.Gerald Combs1-8/+7
svn path=/trunk/; revision=27919
2009-03-27Add initial support for string buffers - ep_allocated, growable stringsGerald Combs2-3/+22
similar to GLib's GStrings. Use them to create the list of TCP flags. svn path=/trunk/; revision=27872
2009-03-27Introduce two new functions:Stephen Fisher1-0/+11
tvb_get_seasonal_string(); tvb_get_seasonal_stringz(); .. which work the same as the ephemeral versions of the functions, but use se_alloc() instead of ep_alloc(). svn path=/trunk/; revision=27868
2009-03-12As suggested on wireshark-users, when using io,stat in tshark, make anSake Blok1-0/+1
interval of 0 signify "all packets". svn path=/trunk/; revision=27715
2009-02-23Have the minimum snapshot length be 1 byte, and have a snapshot lengthGuy Harris4-6/+10
of 0 mean 65535, similar to what tcpdump does. Fixes bug 2731. svn path=/trunk/; revision=27526
2009-02-21Update the documentation to reflect the current state of plugin development.Jaap Keuter1-49/+32
svn path=/trunk/; revision=27491
2009-02-16Add Apple PacketLogger to list of supported capture file formats.Stephen Fisher1-0/+3
svn path=/trunk/; revision=27464
2009-02-05Trivial spacing changeBill Meier1-1/+1
svn path=/trunk/; revision=27376
2009-02-05Fix a typoJeff Morriss1-18/+18
svn path=/trunk/; revision=27375
2009-01-15Update the description & skeleton code for the use of proto_reg_handoff.Bill Meier1-32/+64
svn path=/trunk/; revision=27239
2008-12-31Service response time statistics for MEGACO (CLI part).Balint Reczey1-0/+17
Refactored GUI part to avoid code duplication. svn path=/trunk/; revision=27143
2008-12-31Service response time statistics for MEGACO (GUI only).Balint Reczey1-0/+14
svn path=/trunk/; revision=27140
2008-12-18Describe the "-d" option a little more clearly.Gerald Combs1-3/+12
svn path=/trunk/; revision=27055
2008-11-18Wrap "USA." in the address of the FSF onto a new line with a * in front of it.Stephen Fisher1-1/+2
svn path=/trunk/; revision=26801
2008-11-01Update tabsize, re-group bitfield proto_tree functions, extend fieldinfo ↵Jaap Keuter1-90/+118
macro descriptions. svn path=/trunk/; revision=26667
2008-10-23Add tvb_bytes_to_str() & tvb_bytes_to_str_punct(); fix a few typos.Bill Meier1-5/+21
svn path=/trunk/; revision=26519
2008-10-03document the new -K argumentRonnie Sahlberg2-0/+16
svn path=/trunk/; revision=26346
2008-09-22Polish up the proto_tree_add_bitmask() description example.Jaap Keuter1-0/+8
svn path=/trunk/; revision=26249
2008-09-22Fix for bug 2889:Jaap Keuter1-2/+7
Add description of FT_UINT_BYTES. svn path=/trunk/; revision=26248
2008-09-09from Christopher.Maynard@GTECH.COM:Ulf Lamping1-28/+40
Attached is a small patch with minor formatting changes and a few XXX's filled in with some additional information. svn path=/trunk/; revision=26170
2008-09-06compile a document about heuristic dissectors, following:Ulf Lamping2-0/+201
http://www.wireshark.org/lists/wireshark-dev/200808/msg00234.html svn path=/trunk/; revision=26146
2008-08-22Minor rewording; fix a typeBill Meier1-5/+9
svn path=/trunk/; revision=26056
2008-08-04From Alexey Neyman :Anders Broman1-2/+25
This patch implements a function for dissecting bitfields with better control over the resulting representation than the existing proto_tree_add_bitmask() routine. This function will be used by reworked IPMI/ATCA dissector (bug 2048). The function is described in README.developer. In short, the differences are as follows: - The new function does not require a hf_XXX field for the whole bitmask. When the bitmask includes several unrelated fields, such hf_XXX field does not make sense. - The new function allows better control over the way the sub-item descriptions are added to the top-level item. For example, proto_tree_add_bitmask() function does not add non-enumerated integers, does not use true_false_string to display boolean. - The new function allows to specify "fallback" text for the top-level item which is used if no items were added to the top-level item. svn path=/trunk/; revision=25920
2008-07-30From Alexey Neyman :Anders Broman1-2/+12
Implement BASE_CUSTOM display type svn path=/trunk/; revision=25870
2008-07-30Add information aboutAnders Broman1-1/+26
tvb_get_bits proto_tree_add_bits_item and proto_tree_add_bits_item_ret_val. svn path=/trunk/; revision=25866
2008-07-24Remove the (long deprecated) proto_tree_add_*_hidden() functionsJeff Morriss1-126/+65
svn path=/trunk/; revision=25820
2008-07-18Hyphenate "per-packet information".Guy Harris1-3/+3
svn path=/trunk/; revision=25767
2008-07-02Put the EXTRA_DIST items for the doc directory in doc/Makefile.am (whichGuy Harris1-0/+30
doesn't need to be one of those items). svn path=/trunk/; revision=25660
2008-06-30From Abhik Sarkar via ↵Jeff Morriss1-2/+2
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2661 : fix prototypes of tvb_fake_unicode() and tvb_get_ephemeral_faked_unicode() svn path=/trunk/; revision=25636
2008-06-16Fix for bug 2612:Jaap Keuter1-3/+4
cleaned up FT_UINT_STRING type description. svn path=/trunk/; revision=25459
2008-06-16Fix for bug 2611:Jaap Keuter1-1/+1
Add -v option to example "od" command line. svn path=/trunk/; revision=25458
2008-05-23eth_ --> ws_Bill Meier1-5/+5
svn path=/trunk/; revision=25370
2008-05-21Fix typoBill Meier1-1/+1
svn path=/trunk/; revision=25346
2008-05-21Only Glib/GTK+ >= 2.4/2.4 supported; checkAPIs.pl should be used to verify code.Bill Meier1-13/+8
svn path=/trunk/; revision=25340
2008-05-20Clean up PTV cursor documentation.Jaap Keuter1-30/+33
svn path=/trunk/; revision=25321
2008-05-02Ensure wireshark-filter doc rebuilt when tshark changes; optimize rebuild ↵Bill Meier1-7/+1
slightly svn path=/trunk/; revision=25215
2008-04-14From Andrew Feren (bug 2462):Stig Bjørlykke1-0/+5
Patch to print packet rate. From me: Document -x option in man page. svn path=/trunk/; revision=25024
2008-04-09remove GTK1 only preferences descriptionUlf Lamping1-12/+0
svn path=/trunk/; revision=24872
2008-04-09lot's of GTK1 related code cleanup in the Win32 build processUlf Lamping1-4/+4
svn path=/trunk/; revision=24854
2008-04-07- Remove GLIB1 codeStephen Fisher1-7/+0
- Change ugly GLIB version checking statements to GLIB_CHECK_VERSION - Remove ws_strsplit files because we no longer need to borrow GLIB2's g_strsplit code for the no longer supported GLIB1 builds svn path=/trunk/; revision=24829
2008-04-05add ws.css to cleanUlf Lamping1-0/+1
svn path=/trunk/; revision=24787
2008-03-23From William Pursell:Jaap Keuter1-17/+17
typos in documentation. svn path=/trunk/; revision=24719
2008-03-21Fix bug #2382: Typos in README.developerStephen Fisher1-7/+7
svn path=/trunk/; revision=24712