aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2013-06-14Remove check_col() and the occasional tree.Michael Mann62-765/+419
svn path=/trunk/; revision=49923
2013-06-14From Katrina Zhang via Anders (manually applied by me): dissect node features.Jeff Morriss1-25/+45
From me: remove some tabs and trailing white space. svn path=/trunk/; revision=49922
2013-06-14Remove check_col() and the occasional tree.Michael Mann67-898/+613
svn path=/trunk/; revision=49921
2013-06-14Remove check_col() and the occasional tree.Michael Mann83-929/+607
svn path=/trunk/; revision=49920
2013-06-13On OS X set the toolbar icon size to match our current icons.Gerald Combs1-1/+2
svn path=/trunk/; revision=49919
2013-06-13Fix typo errorPascal Quantin1-1/+1
svn path=/trunk/; revision=49918
2013-06-13Add basic dissection of Prefix Exclude optionPascal Quantin1-0/+17
svn path=/trunk/; revision=49917
2013-06-13From Javier Godoy via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8794 :Jeff Morriss1-4/+4
Display the value of unknown sense descriptor codes in the tree item. Also fix the length of the subtree. svn path=/trunk/; revision=49916
2013-06-13From Tyson Key via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8791 :Pascal Quantin1-3/+10
Improve dissection of GSM SIM payloads in USB CCID packets svn path=/trunk/; revision=49915
2013-06-13Adding support of BGP flow spec RFC 5575.Michael Mann1-9/+630
From Matt Texier, bug 8691 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8691) svn path=/trunk/; revision=49914
2013-06-13Updated the rsync dissector to make it able to parse the newer variants of ↵Michael Mann1-112/+159
the protocol, treat binary data consistently and clearly differentiate packets of the client and the server. From Benoit Daloze, bug 8743 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8743) svn path=/trunk/; revision=49913
2013-06-12Give somewhat more precise names for character encodings ("Unicode"Guy Harris1-5/+4
doesn't specify a single way to encode characters in an octet stream - there's UTF-8 and UTF-16BE/LE, as well as UCS-2BE/LE for a subset of Unicode, and "Latin" really means "ISO 8859-1" a/k/a "ISO Latin 1". svn path=/trunk/; revision=49912
2013-06-12Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3289 :Pascal Quantin1-3/+36
dissector ansi_637 does not have unicode encoding in user data parameter svn path=/trunk/; revision=49911
2013-06-12Fix dissection of 3GPP2 SMS messages when the User Data Header field is ↵Pascal Quantin3-79/+168
present (for fragmented SMS) svn path=/trunk/; revision=49910
2013-06-12Color td and th borders as well. Set an SVN ID.Gerald Combs1-0/+2
svn path=/trunk/; revision=49909
2013-06-12From Peter Hatina via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8793 :Jeff Morriss1-2/+21
Fix crash if you cancel the Flow Graph window while the Graph Analysis window is still open: close the Graph Analysis window when the user cancels the Flow Graph window. From me: do the same thing for the window-delete case. svn path=/trunk/; revision=49908
2013-06-12Update the table style. Minor text fixes.Gerald Combs2-24/+45
svn path=/trunk/; revision=49907
2013-06-12no need for check_col()Martin Kaiser1-26/+20
svn path=/trunk/; revision=49906
2013-06-12Pretify dissection of date and Time.Anders Broman4-9/+191
svn path=/trunk/; revision=49905
2013-06-12simplify the subdissector callMartin Kaiser1-9/+5
svn path=/trunk/; revision=49904
2013-06-12TABs -> spacesMartin Kaiser1-138/+151
add modelines svn path=/trunk/; revision=49903
2013-06-12no expert infos under if(tree)Martin Kaiser1-46/+37
simplify the code a bit svn path=/trunk/; revision=49902
2013-06-12From Javier GodoyMartin Kaiser1-4/+63
dissect SCSI OSD error identification sense data descriptor from me - TABs -> spaces - fix compiler errors about unused return values - don't use another subtree within the descriptor payload https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8790 svn path=/trunk/; revision=49901
2013-06-12fix compiler warningMartin Kaiser1-1/+1
(gcc version 4.4.5 (Debian 4.4.5-8)) cc1: warnings being treated as errors packet-bthfp.c: In function ‘dissect_at_command’: packet-bthfp.c:875: error: ‘col_str’ may be used uninitialized in this function svn path=/trunk/; revision=49900
2013-06-12Fix wrong offset in H.235 tokens causing malformed packet exceptionTomas Kukosa2-10/+10
svn path=/trunk/; revision=49899
2013-06-12no need for check_col()Martin Kaiser1-6/+4
svn path=/trunk/; revision=49898
2013-06-12TABs -> spacesMartin Kaiser1-957/+968
add modelines svn path=/trunk/; revision=49897
2013-06-12CID 280301: add a NULL check before dereferencing the pointerMartin Kaiser1-1/+1
svn path=/trunk/; revision=49896
2013-06-12From Javier Godoy:Anders Broman1-7/+38
dissect SCSI field pointer sense key specific information https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8789 svn path=/trunk/; revision=49895
2013-06-12Fix a crash when oid_info->value_typem is NULLAnders Broman2-2/+2
svn path=/trunk/; revision=49894
2013-06-12Batch of filterable expert infos with some minor cleanup I noticed while ↵Michael Mann17-368/+486
doing the filter conversions. svn path=/trunk/; revision=49893
2013-06-12Convert the compiler table to a variablelist so that we don't end upGerald Combs1-315/+269
cramming a bunch of text into a bunch of narrow columns. Remove the .NET framework 2.0 SDK and Visual Studio 2005. Sort items from newest to oldest. svn path=/trunk/; revision=49892
2013-06-11TABs -> spacesMartin Kaiser1-162/+176
add editor modelines svn path=/trunk/; revision=49891
2013-06-11From Javier GodoyMartin Kaiser1-9/+65
dissect SCSI descriptor format sense data from me - replace TABs with spaces - delete unused variable "flags" - set format string for proto_tree_add_text() - use val_to_str_const() https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8786 svn path=/trunk/; revision=49890
2013-06-11Add PDC and TETRAPascal Quantin1-0/+2
svn path=/trunk/; revision=49889
2013-06-11From Tyson Key via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8788 :Jeff Morriss1-0/+1
ETSI TS 102 221 V8.2.0 (2009-06) (http://www.etsi.org/deliver/etsi_ts/102200_102299/102221/08.02.00_60/ts_102221v080200p.pdf) says that file ID 0x7F31 is reserved for use by iDEN network operators (e.g. Nextel in the USA). The attached patch updates the GSM SIM dissector's table of recognised FIDs accordingly. svn path=/trunk/; revision=49888
2013-06-11Show DisplayString as a string.Anders Broman3-6/+14
svn path=/trunk/; revision=49887
2013-06-11From Michal Labedzki via ↵Evan Huus3-26/+1973
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8740 Improve Bluetooth HFP dissection. svn path=/trunk/; revision=49886
2013-06-11Remove blurbs not adding any value.Anders Broman1-30/+30
svn path=/trunk/; revision=49885
2013-06-11From Hauke Mehrtens:Anders Broman1-5/+23
There were some problems which prevented wireshark from showing the payload. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8780 svn path=/trunk/; revision=49884
2013-06-11From Hauke Mehrtens:Anders Broman1-2/+2
In some places String and byte were mixed up which caused problems. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8780 svn path=/trunk/; revision=49883
2013-06-11From Hauke Mehrtens:Anders Broman1-200/+174
There were some changes in how to specify the length or give a bigger option delta. This is now implemented how it is specified in CoAP draft 17. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8780 svn path=/trunk/; revision=49882
2013-06-11From Hauke Mehrtens:Anders Broman1-3/+14
There is no option length attribute any more there is just the end of options marker. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8780 svn path=/trunk/; revision=49881
2013-06-11From Hauke Mehrtens:Anders Broman1-9/+9
The field named Transaction ID is named Message ID in the RFC draft version 17 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8780 svn path=/trunk/; revision=49880
2013-06-11From Hauke Mehrtens:Anders Broman1-35/+22
The token is not an option any more, but it is now in the main header. This was done between CoAP draft 12 and 13 and still exists in CoAP draft 17. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8780 svn path=/trunk/; revision=49879
2013-06-11From: Hauke MehrtensAnders Broman1-10/+148
DTLS 1.2 adds a supported_signature_algorithms attribute to the CertificateRequest which was not parsed in DTLS. This code was copied from the ssl code. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8781 svn path=/trunk/; revision=49878
2013-06-11From Javier Godoy:Anders Broman1-16/+200
update SCSI version descriptors defined in SPC-4 revision 36g (scsi_verdesc_val). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8784 svn path=/trunk/; revision=49877
2013-06-11Update to the latest config.guess and config.sub.Jeff Morriss2-61/+85
svn path=/trunk/; revision=49876
2013-06-10Update OS X instructions and add Qt Mac Extras.Gerald Combs1-3/+11
svn path=/trunk/; revision=49874
2013-06-10Check for QtMacExtras, and if we have it use it to switch to a nativeGerald Combs2-2/+19
title + toolbar on OS X. svn path=/trunk/; revision=49873