aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
AgeCommit message (Collapse)AuthorFilesLines
2012-05-28Use C/T as rbidAnders Broman1-3/+17
svn path=/trunk/; revision=42888
2012-05-28Use ett instead of hf variableAnders Broman1-7/+9
svn path=/trunk/; revision=42887
2012-05-28Set but not used variableAnders Broman1-2/+0
svn path=/trunk/; revision=42885
2012-05-28Remove C++ style comments initilize some variables.Anders Broman1-3/+4
svn path=/trunk/; revision=42884
2012-05-28While iterating over string characters don't use strlen(), but check for NUL.Jakub Zawadzki2-5/+4
svn path=/trunk/; revision=42883
2012-05-28Set SVN properties.Anders Broman1-1/+1
svn path=/trunk/; revision=42882
2012-05-28Set SVN properties.Anders Broman4-4/+4
svn path=/trunk/; revision=42881
2012-05-28From Erwin Rol:Anders Broman8-353/+4839
Artnet, RDM and DMX dissector updates https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7286 svn path=/trunk/; revision=42880
2012-05-28Extend the switch statement.Anders Broman2-4/+9
svn path=/trunk/; revision=42879
2012-05-28Move defenition of rlc_mode.Anders Broman2-1/+10
svn path=/trunk/; revision=42878
2012-05-28Try to pacify the Ubuntu buildbot.Anders Broman2-6/+5
svn path=/trunk/; revision=42877
2012-05-28Enhance CHANNEL_HSDSCH dissection.Anders Broman5-85/+201
svn path=/trunk/; revision=42876
2012-05-28Sometimes you might have plaintext LDAP for a SASL LDAP connection if the ↵Ronnie Sahlberg1-0/+6
handshake never occured. Observed with exchange in some configurations. From Matthieu Patou <mat@matws.net> svn path=/trunk/; revision=42875
2012-05-25Add a null check to fix Coverity CID 280210. It doesn't look like we'dGerald Combs1-0/+3
run into this in the wild. svn path=/trunk/; revision=42853
2012-05-25Fix Coverity CID 700177 Unused pointer value.Chris Maynard1-1/+1
svn path=/trunk/; revision=42849
2012-05-25The rest of the fix for Coverity CID's 280507 and 280508. (There were ↵Chris Maynard1-8/+9
multiple occurrences grouped into the 2 CID's, but I hadn't noticed them all.) svn path=/trunk/; revision=42848
2012-05-25tvb_length_remaining() can return a negative number, so be sure to handle ↵Chris Maynard1-2/+2
it. Fixes Coverity CID's 280507 and 280508. svn path=/trunk/; revision=42847
2012-05-25Fix Coverity CID 701035: Dereference after null check of hfinfo.Chris Maynard1-3/+3
svn path=/trunk/; revision=42843
2012-05-25Fix Coverity CID 700201: Dereference after null check, by ensuring "decoder" ↵Chris Maynard1-0/+4
is not NULL before passing it to ssl_decrypt_record(). svn path=/trunk/; revision=42842
2012-05-25tvb_length_remaining() can return a negative number, so be sure to handle ↵Chris Maynard1-3/+7
it. Fixes Coverity CID 281367. svn path=/trunk/; revision=42840
2012-05-24tvb_length_remaining() can return a negative number, so be sure to handle ↵Chris Maynard1-4/+16
it. Fixes Coverity CID's 280233-280235. svn path=/trunk/; revision=42839
2012-05-24Update asn1-generated dissector.Chris Maynard1-2/+2
svn path=/trunk/; revision=42838
2012-05-24tvb_reported_length_remaining() can return a negative number. In ↵Chris Maynard1-4/+7
dissect_gadu_gadu_userlist80_compressed(), bail out if it does. Fixes Coverity CID 703085. In dissect_gadu_gadu_stringz_cp1250(), be sure to compare against its return value as being only positve rather than non-zero. Also, fixed a couple of typos. svn path=/trunk/; revision=42837
2012-05-24Fix bug #7283Jakub Zawadzki1-1/+2
When Engine ID is 128 we should only break when we know the enterprise id. svn path=/trunk/; revision=42825
2012-05-24From Martin Kaiser:Anders Broman2-4/+4
RVALS() needs BASE_RANGE_STRING https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7282 svn path=/trunk/; revision=42823
2012-05-24From Mayuresh Raut.Anders Broman1-5/+503
Addition of DDMAP TLV and Downstream FEC stack change sub-TLV to DDMAP [RFC 6424] https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7006 svn path=/trunk/; revision=42819
2012-05-23From Martin Kaiser via ↵Pascal Quantin1-10/+173
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7275 : iso7816: dissect ATR (answer to reset) svn path=/trunk/; revision=42814
2012-05-23Fix bug #7277Jakub Zawadzki1-1/+3
Check tvb length before fetching data. svn path=/trunk/; revision=42812
2012-05-23Dissect MAC and RLC for CHANNEL_FACH_FDDAnders Broman1-4/+45
svn path=/trunk/; revision=42811
2012-05-23From Robert Bullen:Anders Broman2-0/+6
The Wireshark and tshark TCP conversations stats tables aggregate reused connections into a single line item https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7248 svn path=/trunk/; revision=42806
2012-05-23Fix a typoAnders Broman1-1/+1
svn path=/trunk/; revision=42805
2012-05-23From Jim Wright:Anders Broman2-14/+109
Enhance the DTN dissector so that it understands ECOS blocks (Extended Class of Service) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7242 svn path=/trunk/; revision=42804
2012-05-23 All:Bill Meier2-223/+224
- whitespace cleanup; - Remove redundant code; packet-ymsg.c: - Check if bytes available before doing tvb fetch for heuristic check; - Required tcp pdu "fixed part length" is 10 (not 8); - Use val_to_str_const() as appropriate; - Remove some unneeded initializations. svn path=/trunk/; revision=42802
2012-05-23From Evan Huus: "Fix Potential padding issues in Yahoo dissectors"Bill Meier2-3/+11
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7276 svn path=/trunk/; revision=42801
2012-05-23Fix Coverity CID 703086: Dereference after null check in decode_tcp_ports().Chris Maynard1-1/+1
svn path=/trunk/; revision=42798
2012-05-22Fix: packet-gsm_a_gm.c:3965:6: error: comparison is always true due to ↵Jeff Morriss1-2/+2
limited range of data type [-Werror=type-limits] svn path=/trunk/; revision=42797
2012-05-22Suppress a (legitimate) compiler warning for now, and leave a commentGuy Harris1-1/+2
indicating that we should do *something* about nanoseconds values >= 1 billion. svn path=/trunk/; revision=42796
2012-05-22nflog dissector:Jakub Zawadzki1-4/+24
- dissect NFULA_TIMESTAMP as 16B time. - fix byte_order_types (selecting BE selected little endian) svn path=/trunk/; revision=42793
2012-05-22Fix PCH dissectionAnders Broman2-73/+72
svn path=/trunk/; revision=42791
2012-05-22Dissect Operator Specific Use container in Protocol Configuration Options IEpascal1-69/+89
Put protocol and container ID in a subtree svn path=/trunk/; revision=42790
2012-05-22Set paging indication and start fixing TFI list.Anders Broman3-56/+97
svn path=/trunk/; revision=42783
2012-05-22Get rid of non-ASCII chars. Remove a few trailing commas.Jeff Morriss2-9/+9
svn path=/trunk/; revision=42782
2012-05-22Collect and use E-DCH data.Anders Broman3-16/+162
svn path=/trunk/; revision=42779
2012-05-22TCP: Some protocols running ontop of TCP needs the PDUs to be delivered in ↵Ronnie Sahlberg1-0/+28
order. for example decryption of DCERPCoverHTTP. For such protocols, hte state gets out of sync of for example the same PDU is invoked twice in a row, which sometimes can happen if there is tcp retransmission and we see the same PDU twice. First for hte original segment and a second time for the tcp retransmission. These protocols might lack an easy way to detect that a PDU is seen twice or out of order. To handle this a little better, offer a TCP option that defaults to being disabled but when enabled skips invoking any subdissector for retransmitted or out of order packets. (For some virtualization environments it sometimes becomes VERY common to see false tcp retransmissions due to segments being captured twice making this even worse) We dont want this option to default to ON because for most cases we do want the current behaviour where the subdissector is called twice, or more, for any PDU that is retrasnmitted on the TPC layer. For example, assume a SMB response packet is retransmitted on the TCP level. This may result in a capture file that looks like 1 -> SMB request 2 <- SMB response to 1 ... 1 second ... 3 <- SMB response to 1 TCP retransmission For this case we definitely want packet 3 to be passed to the SMB layer so that the request/respons ematching will detect that the response time for this transaction was > 1.0 second We want smb.time to indicate the delta betwenn packets 1 and 3 as well as the SMB Service Response Time to indicate that this command took very long. svn path=/trunk/; revision=42774
2012-05-22packet-smb2: dissect the channel sequence in the SMB 2.2 headerRonnie Sahlberg1-7/+19
From Stefan Metzmacher <metze@samba.org> svn path=/trunk/; revision=42772
2012-05-22SMB: Add dissection of TRANS2_REQUEST_TRANSPORT_ENCRYPTION messagesRonnie Sahlberg1-0/+73
From Stefan Metzmacher <metze@samba.org> svn path=/trunk/; revision=42771
2012-05-22SMB: Dissect TRANS2_SET_FS_INFORMATION infolevelRonnie Sahlberg1-0/+33
From Stefan Metzmacher <metze@samba.org> svn path=/trunk/; revision=42770
2012-05-22SMB: Call dissect_nt_quota() via a new dissect_sfsi_request/response()Ronnie Sahlberg1-3/+50
From Stefan Metzmacher <metze@samba.org> svn path=/trunk/; revision=42769
2012-05-22SMB2: Add dissection of the encrypted SMB2 headersRonnie Sahlberg2-136/+251
From Matthieu Patou <mat@matws.net> svn path=/trunk/; revision=42768
2012-05-22SMB2: Add support for the "encrypted" flag for sharesRonnie Sahlberg1-0/+7
From Michael Adam <obnox@samba.org> svn path=/trunk/; revision=42767