aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-04-05Add ICMP tap support, and add a tshark tap to measure such things as:Chris Maynard9-25/+350
* Number of ICMP echo requests, replies, lost replies and percent loss. * Min, Max, Average SRT (Service Response Time), and standard deviation. (This is my first tap, so hopefully I didn't miss something, but we'll see ...) TODO: Add a Wireshark tap. svn path=/trunk/; revision=36480
2011-04-05foo="\windows\style\pathname"; printf "$foo" isn't going to work too well ↵Bill Meier1-1/+1
in the general case ... svn path=/trunk/; revision=36479
2011-04-051. Remove \r from tshark output so output OK on Windows cygwin bash.Bill Meier1-4/+16
2. Error messsages to stderr. 3. Check capinfos return value to verify that file is a valid capture file. svn path=/trunk/; revision=36478
2011-04-05Fix a few more typos and reformat some of the comments.Chris Maynard1-34/+36
svn path=/trunk/; revision=36477
2011-04-05Remove the manifest as a prerequisite for packaging.Gerald Combs1-1/+1
svn path=/trunk/; revision=36476
2011-04-05Compile fix: camel_obj_id -> obj_id.Stig Bjørlykke2-2/+2
svn path=/trunk/; revision=36475
2011-04-05Actually get the oid string ...Anders Broman2-12/+33
svn path=/trunk/; revision=36474
2011-04-05Don't assign to a proto_item * if the value won't be used: Coverity 858;Bill Meier1-82/+80
Fix two cases where items appear to be added to the wrong tree: Coverioty 856 & 857. Also: remove some unneeded #includes& do some whitespace cleanup. svn path=/trunk/; revision=36473
2011-04-05Don't assign to a proto_item * if the value won't be used: Coverity 882;Bill Meier1-9/+8
Also: #include <string.h> not req'd svn path=/trunk/; revision=36472
2011-04-05Fix a typo in the help message.Michael Tüxen1-1/+1
Reported by Matthias Wellmeyer. svn path=/trunk/; revision=36471
2011-04-05From Jose Pedro Oliveira:Anders Broman1-1/+1
#ifdef HAVE_LIBGCRYPT block includes a line too many. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5803 svn path=/trunk/; revision=36470
2011-04-05Remove some unused hf_ variables.Jeff Morriss1-38/+0
svn path=/trunk/; revision=36469
2011-04-05From Felix Kraemer: fix ↵Jeff Morriss5-122/+420
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5694 : This patch adds the capability to create BACnet statistics trees. Find the respective menu items under 'Statistics->BACnet'. Packets can be sorted by different criteria: - Src/Dst IP adresses - Instance ID - Object Type - Service From me: - Don't use C++/C99-style comments. - Name variables for tick_stat_node() don't need to be static. - Change updateBacnetInfoValue() to require 'data' to be ep_ allocated. Change the couple of calls that did not send in ep_ allocated data to do so. - Change one or two functions to be static. - Do not use (memory-unsafe) g_sprintf(). - Use ep_strconcat() instead of leaking memory with g_strconcat(). - Put back one if(tree) that doesn't appear to do any harm. - Remove variable declarations and #includes from the header file. svn path=/trunk/; revision=36468
2011-04-05Set BIN_DIR to . by default. Use tr to replace colons with newlines.Jeff Morriss1-2/+2
svn path=/trunk/; revision=36467
2011-04-04 Don't assign to a proto_item * if the value won't be used: Coverity 850;Bill Meier1-7/+4
Also: remove some unneeded #includes. svn path=/trunk/; revision=36466
2011-04-04Fix "MISSING_BREAK"; Coverity 436.Bill Meier1-2/+2
svn path=/trunk/; revision=36465
2011-04-04 Don't assign to a proto_item * if the value won't be used: Coverity 846 & 848;Bill Meier1-11/+6
Also: remove some unneeded #includes svn path=/trunk/; revision=36464
2011-04-04More console tweaks. But how to prevent prompt from being displayed beforeChris Maynard1-0/+3
command finishes without requiring, "start /wait <command>"? svn path=/trunk/; revision=36463
2011-04-04Based on idea from Bill Meier:Jeff Morriss2-0/+77
A little script to extract the protocols used in given capture files. (Just so I don't have to remember how to do it again.) svn path=/trunk/; revision=36462
2011-04-04Fix up indentationJeff Morriss1-55/+55
svn path=/trunk/; revision=36461
2011-04-04Don't assign to a proto_item * if the value won't be used: Coverity 836;Bill Meier1-10/+4
Also: remove some unneeded #includes. svn path=/trunk/; revision=36460
2011-04-04Don't assign to a proto_item * if the value won't be used: Coverity 832-834.Bill Meier1-68/+68
Also: white space cleanup. svn path=/trunk/; revision=36459
2011-04-04More console tweaks.Gerald Combs1-8/+11
svn path=/trunk/; revision=36458
2011-04-04Fix Coverity 1137, 1138, 1139: UNUSED_VALUEStephen Fisher1-6/+3
svn path=/trunk/; revision=36457
2011-04-04Don't assign to a proto_item * if the value won't be used: Coverity 829 & 830;Bill Meier1-105/+102
Fix a minor bug wherein a number of proto_tree_add_...() used the wrong tree: Coverity 831; Remove some unneeded #includes. svn path=/trunk/; revision=36456
2011-04-04Only call destroy_console() when we create a console (pointed out byGerald Combs1-12/+7
Chris Maynard). svn path=/trunk/; revision=36455
2011-04-04Fix compilation error:Stephen Fisher1-1/+1
packet-amqp.c:5617:5: error: "/*" within comment Cause: Previous comment wasn't terminated right svn path=/trunk/; revision=36454
2011-04-04Don't assign to a proto_item * if the value won't be used: Coverity 827;Bill Meier1-6/+9
Comment out some currently unused code: Coverity 828. svn path=/trunk/; revision=36453
2011-04-04On Windows, try to use an existing console for our messages. Create one ifGerald Combs1-4/+16
it doesn't exist. svn path=/trunk/; revision=36452
2011-04-04Don't assign to a variable if the value won't be used: Coverity 826;Bill Meier1-38/+32
Also: Remove some uneeded #includes & use consistent indentation. svn path=/trunk/; revision=36451
2011-04-04Fix some typos.Chris Maynard1-9/+7
svn path=/trunk/; revision=36450
2011-04-04Don't assign to a proto_item * if the value won't be used: Coverity 823 & 824;Bill Meier1-38/+34
Fix a minor bug wherein a proto_tree_add_text used the wrong tree: Coverity 825; Remove some unneeded #includes; Use consistent indentation. svn path=/trunk/; revision=36449
2011-04-04Don't build a manifest if we don't need one.Gerald Combs1-2/+2
svn path=/trunk/; revision=36448
2011-04-04Don't assign to a proto_item * if the value won't be used: Coverity 820/821;Bill Meier1-7/+4
Also: #include <stdio.h> & <string.h> not required; svn path=/trunk/; revision=36447
2011-04-04Don't assign to a variable if the value won't be used: Coverity 817-821.Bill Meier5-17/+16
svn path=/trunk/; revision=36446
2011-04-04Mark pinfo as unused.Anders Broman1-1/+1
svn path=/trunk/; revision=36445
2011-04-04Get rid of gsm_a_dtap_pinfo.Anders Broman6-68/+56
svn path=/trunk/; revision=36444
2011-04-04Change the signature of elem_fcn():ns to include pinfo.Anders Broman27-1047/+1024
svn path=/trunk/; revision=36443
2011-04-04From Vincent Helfre:Anders Broman1-47/+40
updated the script that extracts the asn1 from the specification (we modified it after noticing that it currently fails to take the IMPORT section). It should also work now to extract the WCDMA RRC (TS 25.331). svn path=/trunk/; revision=36442
2011-04-04Change the msg_fcn() signature to include pinfo.Anders Broman11-563/+561
svn path=/trunk/; revision=36441
2011-04-04From jakub Zawadzki:Anders Broman2-8/+17
I've fixed composite tests #0 and #2 svn path=/trunk/; revision=36440
2011-04-03Don't assign to a proto_item* if the value won't be used: Coverity 885-889Bill Meier1-1351/+1320
Also: Significant code rework including: - Fix bug wherein a timestamp was incorrectly reported as being an Error; - Replace many proto_tree_add_text()/proto_item_set_text() sequences each by a single proto_tree_add_text(). - remove unneeded #include <string.h> - Whitespace clanup including replacing mixed space/tab indentation by spaces. svn path=/trunk/; revision=36437
2011-04-03[Automatic manuf, services and enterprise-numbers update for 2011-04-03]Gerald Combs3-28/+245
svn path=/trunk/; revision=36436
2011-04-02-Whitespace fix in gsm_map-template(no need to regenerate).Anders Broman4-20/+44
- Fix dissection of extensions in INAP it should now be possible to add an "OID dissector" for extensions. Should fix BUG https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5799 svn path=/trunk/; revision=36435
2011-04-01Add some info as to the determination of the length of a FT_STRINGZ item.Bill Meier1-0/+7
Add a note not leaving trailing whitespace on a line. svn path=/trunk/; revision=36434
2011-04-01From Alexis La Goutte via ↵Jeff Morriss1-33/+70
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5768 : Patch 6 : Enhance the MySQL collation Patch 7 : Enhance MySQL : add dissection of command Binlog Dump (replicate command). svn path=/trunk/; revision=36433
2011-04-01Avoid potential buffer overruns when sscanf'ing strings.Chris Maynard1-2/+2
Should resolve CID's 656 and 657. svn path=/trunk/; revision=36432
2011-04-01Don't use pParser->yyidx as an index into pParser->yystack[] until after it isChris Maynard1-2/+3
verified that it is non-negative. Should resolve CID 619. svn path=/trunk/; revision=36431
2011-04-01Remove const type qualifier from cast. Resolves CID's 582-585.Chris Maynard2-4/+3
svn path=/trunk/; revision=36430
2011-04-01Take care not to append RLC mode to proto_item twice.Martin Mathieson1-3/+0
svn path=/trunk/; revision=36429