aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-03-13Use tvb_new_subset_remaining(...) instead of tvb_new_subset(..., -1, -1);Bill Meier1-123/+124
Use value_string_ext to reference a value_string; Use global tfs_set_notset instead of a local version displaying the values incorrectly; Slightly enhance display of the LWAPP Control Message. svn path=/trunk/; revision=41540
2012-03-13Use tvb_new_subset_remaining(...) in place of tvb_new_subset(..., -1, -1);Bill Meier1-66/+76
Use value_string_ext to reference a few value_strings; Use val_to_str_const() in place of val_to_str() in a few cases; Use BASE_NONE for a few hf[] FT_BOOLEAN entries with 0x0 bitmask. svn path=/trunk/; revision=41539
2012-03-13Remove a couple trailing commasJeff Morriss1-2/+2
svn path=/trunk/; revision=41538
2012-03-13Fix up indentation/white space. Use global tfs_yes_no instead of local version.Jeff Morriss1-547/+649
svn path=/trunk/; revision=41537
2012-03-13Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6947 :Jeff Morriss1-1/+1
Don't leave a space at the end of the MSISDN string. svn path=/trunk/; revision=41536
2012-03-13From Jose Pedro Oliveira:Anders Broman1-14/+14
dumpcap.c: code cleaning https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6718 svn path=/trunk/; revision=41535
2012-03-13From Jose Pedro Oliveira:Anders Broman1-1/+0
Remove a printf line in wiretap/pcapng.c https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6718 svn path=/trunk/; revision=41534
2012-03-13Remove if(tree) to address ↵Jeff Morriss1-195/+192
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6940#c3 svn path=/trunk/; revision=41533
2012-03-13Add detailed decoding for Framed-IPv6-Prefix.Jeff Morriss1-10/+56
svn path=/trunk/; revision=41532
2012-03-13Don't mark a couple of unused parameters are unused.Jeff Morriss1-2/+2
svn path=/trunk/; revision=41531
2012-03-13From Jose Pedro Oliveira:Anders Broman2-2/+6
the shb_userappl value wasn't being changed. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6937 svn path=/trunk/; revision=41530
2012-03-13(sigh) Take out the whole if(tree) as Chris suggested. ↵Jeff Morriss1-130/+127
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6903#c14 svn path=/trunk/; revision=41529
2012-03-13Move the col_set_str() outside the if(tree) to address ↵Jeff Morriss1-59/+59
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6903#c7 svn path=/trunk/; revision=41528
2012-03-13H248 package updates from Alex Lindberg in bug ↵Anders Broman4-13/+46
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6915 applied by hand. svn path=/trunk/; revision=41527
2012-03-13H.248 Annex E dissector does not properly dissect event parametersAnders Broman6-216/+917
(Update the h.248 dissector's package registration to support v1 packets.) Applying part of the patch from Alex Lindberg in bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6915 by hand. Fixes bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4842 svn path=/trunk/; revision=41526
2012-03-13From Weston Schmidt:Anders Broman1-3/+19
Make mpeg-sect CRC checking a preference defaulting to off. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6944 svn path=/trunk/; revision=41525
2012-03-13A modified version of "pcapng: shd_userappl in newly created files"Anders Broman2-0/+10
to only add the name if no name if there yet. Original patch from Jose Pedro Oliveira. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6937 svn path=/trunk/; revision=41524
2012-03-13From Weston Schmidt:Anders Broman11-84/+278
Update packet-mpeg-sect to support CRCs & simpler header processing for subdissectors. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6941 svn path=/trunk/; revision=41523
2012-03-13Add data structure to hold information from ISB:sAnders Broman3-2/+27
svn path=/trunk/; revision=41522
2012-03-13Add an explicit capture_cb_capture_failed indication for the case whereGuy Harris5-72/+91
we weren't even able to start a capture, rather than delivering a fake "capture start" indication and relying on a later "capture file closed" indication - for a capture that was never opened in the first place - to handle GUI cleanups. Don't deliver any GUI indications in cf_close() if we didn't have a capture file open in the first place. Clear the status bar and welcome header if that indication is delivered. If we start a capture from the command line with the -k flag, don't show the captured packet information unless the capture actually starts. svn path=/trunk/; revision=41521
2012-03-13From Tyson Key: Support for dissection of PN532 payloads in USB CCID ↵Anders Broman1-10/+49
packets. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6940 svn path=/trunk/; revision=41520
2012-03-13SystemConfiguration framework, not IOKit?Guy Harris1-3/+0
svn path=/trunk/; revision=41519
2012-03-13Suggest a better way of getting the interface type on OS X.Guy Harris1-0/+18
svn path=/trunk/; revision=41518
2012-03-13Closing a capture file has nothing to do with the list of interfaces onGuy Harris2-12/+19
which to do a live capture; don't clear the latter list when closing the capture file. collect_ifaces() should clear out the existing list of interfaces before filling that list up with the interfaces selected by the user. In addition, when it frees up interfaces in that list, it should free up the strings attached to those interfaces. svn path=/trunk/; revision=41517
2012-03-13From Michael Mann via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6938 :Jeff Morriss1-6/+6
Don't limit CSeq to 2**31-1 (2147483647): use stroul() instead of atoi() in several places. svn path=/trunk/; revision=41516
2012-03-13From Stephen Donnelly via ↵Jeff Morriss1-20/+20
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6943 : The ERF extension header 'New BFS' is poorly named, it is not descriptive. Rename the ERF 'New BFS' extension header to 'Signature' which is more descriptive, more easily distinguished, and consistent with the internal naming. svn path=/trunk/; revision=41515
2012-03-13From Peter Harris:Jeff Morriss7-752/+1316
An enum name collision was recently added to the upstream XCB/proto. Avoid the collision by putting enum names into their proper namespace. After applying that, regenerate the X11 dissector. svn path=/trunk/; revision=41514
2012-03-12Enhance and update IPv6 Option of Extension HeaderAlexis La Goutte2-123/+151
* Make field filterable... * Display unknown option payload svn path=/trunk/; revision=41513
2012-03-12Code=100 is Framed-IPv6-Pool, not (another copy of) Framed-IPv6-PrefixJeff Morriss1-83/+83
svn path=/trunk/; revision=41512
2012-03-12Use tvb_new_subset_remaining(...) instead of tvb_new_subset(..., -1, -1);Bill Meier1-193/+193
expert_add_info_format() must be called even when 'tree == NULL' so that MALDORMED will appear in the INFO column. Do various whitespace & formatting changes. svn path=/trunk/; revision=41511
2012-03-12Use tvb_new_subset_remaining(...) in place of tvb_new_subset(..., -1, -1);Bill Meier1-21/+16
Remove unneeded calls to col_clear(); Define dissect_dvb_data_mpe() to be static; Do some minor whitespace changes. svn path=/trunk/; revision=41510
2012-03-12Fix a typo in a function name and some indentation.Jeff Morriss1-17/+17
svn path=/trunk/; revision=41509
2012-03-12Improved a if-check to avoid a analyzis warning.Stig Bjørlykke2-2/+2
svn path=/trunk/; revision=41508
2012-03-12Value can't be negative if no_of_bits == 0Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=41507
2012-03-12From Jose Pedro Oliveira:Anders Broman1-2909/+2909
Enforce the modelines in wiretap/pcapng.c svn path=/trunk/; revision=41506
2012-03-12From Jose Pedro Oliveira:Anders Broman2-533/+533
Enforce the modelines in dumpcap.c and in pcapio.c svn path=/trunk/; revision=41505
2012-03-12Minor reformatting, whitespace and style changes.Bill Meier1-103/+105
svn path=/trunk/; revision=41504
2012-03-12Use consistent indentation;Bill Meier5-5302/+5306
Do minor reformatting. svn path=/trunk/; revision=41503
2012-03-12Cleanup & minor bug fixes:Bill Meier7-3631/+3656
- Don't put a value_string array in a .h file (included in several .c files); - 'if ((a!=NULL) && !b) {fail}' should be 'if ((a==NULL) || !b) {fail}' in a few cases; - Use value_string_ext as appropriate; - Use val_to_str_const() in place of val_to_str() as appropriate; - Use tvb_new_subset_remaining(...) instead of tvb_new_subset(..., -1, -1); - Use tvb_reported_length_remaining() in place of tvb_length_remaining() in some cases; - tvb_reported_length_remaining() can return -1; - Use of TFS(&true_false) not req'd since "True"/"False" is the default if no TFS provided; - Reformat various (long lines, etc); - Use consistent indentation. svn path=/trunk/; revision=41502
2012-03-12Free idb_inf and shb_hdr when done.Anders Broman2-0/+8
svn path=/trunk/; revision=41501
2012-03-12Add checkboxes to filter for RACH attempts and SRs.Martin Mathieson1-14/+65
svn path=/trunk/; revision=41500
2012-03-12Add a checkbox to filter for RACH attempts.Martin Mathieson1-2/+26
svn path=/trunk/; revision=41499
2012-03-12Add doxygen tags.Anders Broman1-42/+43
svn path=/trunk/; revision=41498
2012-03-12From Tyson Key:Anders Broman3-0/+516
Dissector for the NXP PN532 protocol https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6903 svn path=/trunk/; revision=41497
2012-03-12From Jose Pedro Oliveira: Add ModlinesAnders Broman1-0/+13
svn path=/trunk/; revision=41496
2012-03-12From Jose Pedro Oliveira: Add ModlinesAnders Broman1-0/+13
svn path=/trunk/; revision=41495
2012-03-12capture_opts_add_iface_opt() is not used outside capture_opts.c; make itGuy Harris2-4/+1
static. svn path=/trunk/; revision=41494
2012-03-11Within a status report, check that NACK_SNs are not 'ahead' of ACK_SN.Martin Mathieson1-0/+6
svn path=/trunk/; revision=41493
2012-03-11From Steve Magnani: knock URB Setup out from under USB URB ↵Anders Broman1-14/+14
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6934 svn path=/trunk/; revision=41492
2012-03-11Don't close the currently loaded capture file in capture_start(), do soGuy Harris3-6/+21
in its callers; when starting a capture with "wireshark -k", there's no capture file to close, and closing it might be provoking some UI actions that cause crashes on Windows. Don't copy the list of selected interfaces to the list of capture interfaces in capture_start(), either, do that in the callers; we were already doing that in one place and, in one of the remaining cases, namely "wireshark -k", we should do so only if no capture interfaces were supplied on the command line. (I.e., the set of interfaces on which we want to capture depends on where in the UI the capture is being started.) svn path=/trunk/; revision=41491