aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
AgeCommit message (Collapse)AuthorFilesLines
2008-02-11A few minor pedantic fixes ....Bill Meier4-11/+11
svn path=/trunk/; revision=24301
2008-02-11Fix one add'tl warning as reported by David KirkbyBill Meier1-1/+0
svn path=/trunk/; revision=24298
2008-02-10The type field of an mtp3_addr_pc_t is a "which SS7 standard is this?"Guy Harris2-5/+1
type, not a "how do I format addresses?" type; declare it as such, and remove the comment that pointed out that the type field had the wrong (C) type. svn path=/trunk/; revision=24297
2008-02-09Fix (Sun) compiler warnings as reported by David Kirkby: Part 1Bill Meier3-6/+8
svn path=/trunk/; revision=24295
2008-02-08- Add application Id:s to DiameterAnders Broman2-26/+70
- Further dissect 3GPP Radius AVP:s. svn path=/trunk/; revision=24293
2008-02-08Added missing "svn:keywords Id" and "svn:eol-style native" for someStig Bjørlykke8-127/+129
c and h files. svn path=/trunk/; revision=24290
2008-02-08based on the novell idllib sources :Ronnie Sahlberg3-18/+63
add dissection of the 16 byte header prior to the NDR data when NDR is transported as a blob ontop of !dcerpc like the LOGON_INFO in the PAC in kerberos svn path=/trunk/; revision=24289
2008-02-07Removed even more "statement not reached" warnings.Stig Bjørlykke37-112/+28
svn path=/trunk/; revision=24286
2008-02-07Removed a break which disabled some code.Stig Bjørlykke1-3/+1
svn path=/trunk/; revision=24285
2008-02-07Rewrote some "if(tree)" code inside a switch-case to avoid unused code Stig Bjørlykke1-591/+650
(which did not work as expected). switch(type) { case 1: ... break; if(tree) { case 2: ... break; } } svn path=/trunk/; revision=24284
2008-02-07Removed some "statement not reached" warnings.Stig Bjørlykke8-79/+45
svn path=/trunk/; revision=24282
2008-02-07Corrected some types.Stig Bjørlykke2-11/+11
svn path=/trunk/; revision=24280
2008-02-06From Thomas Dreibholz (bug 2248):Stig Bjørlykke2-0/+175
Add a dissector for the Scripting Service Protocol provided as part of the RSPLIB package. RSPLIB is an Open Source implementation of the upcoming Reliable Server Pooling standard. The scripting service is an application for load distribution, based on Reliable Server Pooling. From me: Shorten the protocol name to SSP. svn path=/trunk/; revision=24276
2008-02-05Update gsm map asn1 files to latest version.Anders Broman1-9/+148
svn path=/trunk/; revision=24270
2008-02-04From Shane Kearns (bug 2242):Stig Bjørlykke1-11/+16
1) update SDP dissector with new IDs from assigned numbers document https://www.bluetooth.org/apps/content/default.aspx?doc_id=49709 2) decode attribute IDs in an "attribute ID list" parameter (previously it showed raw number only) 3) removed some duplicate entries in vs_service_classes svn path=/trunk/; revision=24267
2008-02-03Add mapping for s1ap_r8.Martin Mathieson1-29/+50
svn path=/trunk/; revision=24264
2008-02-03From Shane Kearns (bug 2237):Stig Bjørlykke9-1/+172
Added support for Symbian OS btsnoop. The bluetooth HCI layer in Symbian OS can be configured to log all packets to a file. The log format, "btsnoop" is based on the RFC1761 "snoop" format - but differences in the header make it incompatible. The btsnoop format supports logging of these formats: "H1" (raw HCI packets without framing) "H4" (HCI UART packets including packet type header) "H5" (HCI 3 wire UART packets including framing) "BCSP" (HCI bluecore serial protocol including framing) "H1" and "H4" are section numbers in the original v1 bluetooth specifications, but still used colloquially - wireshark's existing support for Linux bluez HCI logs uses the "H4" name. In practice, the "H1" format is used for H5,BCSP and USB HCI logs, as the HCI packet logs are mainly useful for debugging higher layers, bluetooth profiles and bluetooth applications. From me: Deleted some unused prototypes. Mark an unused parameter. svn path=/trunk/; revision=24263
2008-02-03From Shane Kearns (bug 2239):Stig Bjørlykke1-12/+103
L2CAP dissector is missing retransmission & flow control modes (these were introduces in BT 1.2 specification) Configuration commands were not fully decoded because of a bigend/littleend issue L2CAP commands had the wrong length set to the protocol tree by reading from the wrong buffer offset Also the dissect_options() function consumes all remaining data in the L2CAP packet, which prevents decoding of other commands which follow a config request/config response in the same packet. From me: Mark an unused parameter. svn path=/trunk/; revision=24262
2008-02-03More rewrite of prohibited APIs (sprintf, strcpy, strcat).Stig Bjørlykke1-5/+4
svn path=/trunk/; revision=24258
2008-02-03Update asn1 files to 3GPP TS 25.433 V7.7.0 (2007-12)Anders Broman1-1988/+3578
svn path=/trunk/; revision=24256
2008-02-03Get rid of some warnings.Anders Broman1-25/+23
svn path=/trunk/; revision=24251
2008-02-03Update asn1 files to GPP TS 25.413 V7.8.0 (2008-01).Anders Broman1-70/+79
svn path=/trunk/; revision=24250
2008-02-02Rewrote some prohibited APIs in epan/dissectors/ (sprintf, strcpy, strcat).Stig Bjørlykke21-158/+170
If we get some truncated strings we probably overwrote some buffers... svn path=/trunk/; revision=24249
2008-02-02Fixed a possible buffer overflow in dissect_fmp_flushCmd() when cmd hasStig Bjørlykke1-9/+10
all bits set. svn path=/trunk/; revision=24248
2008-02-02Rewrote strcat -> strncat, and fixed to show more than the last remainingStig Bjørlykke1-3/+4
Cmd_Argv value for Remote Command. svn path=/trunk/; revision=24247
2008-02-02From Peter Kjellerstedt:Jaap Keuter1-7/+9
I was capturing an RTP stream the other day which contained JPEG images streamed according to RFC 2435. However, Wireshark reported them as malformed. After some debugging of the Wireshark code it turned out that the decoding of JPEG images which contain a quantization table was incorrect. I have attached a patch to correct the decoding. svn path=/trunk/; revision=24246
2008-02-02From Alan McBride:Jaap Keuter1-2/+21
The decoding of a SubscribeCOVProperty packet is not properly decoding the Monitored Property Identifier field. It leaves a number of decoded bytes at the end as data. svn path=/trunk/; revision=24245
2008-02-02Fix for bug 2202, when an ethernet frame with padding is encountered, theSake Blok1-1/+1
reported length is 46, so there was a one-off error in the code. svn path=/trunk/; revision=24244
2008-01-30Dissect the FLUTE "data".Anders Broman3-10/+35
svn path=/trunk/; revision=24228
2008-01-30Move glib-2 specific code out of gsmmap.cnf (where we can't #ifdef aroundJeff Morriss1-93/+108
it--asn2wrs doesn't understand #ifdef's) to packet-gsm-template.c svn path=/trunk/; revision=24227
2008-01-29cleanup initial comment. fix urls and email addresses.Mike Duigou2-15/+17
svn path=/trunk/; revision=24224
2008-01-29Add missing 'static int' for dissect_diameter_3gpp_tmgi(...)Bill Meier1-0/+1
svn path=/trunk/; revision=24223
2008-01-29Dissect 3GPP AVP Code: 900 TMGIAnders Broman1-3/+51
svn path=/trunk/; revision=24222
2008-01-29SSI dBm signal is signed.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=24218
2008-01-28Dissect Vendor id and Auth-application Id.Anders Broman1-0/+23
svn path=/trunk/; revision=24216
2008-01-27Make use of an unused value.Stig Bjørlykke1-1/+2
svn path=/trunk/; revision=24213
2008-01-27Add the forgotten file.Anders Broman1-0/+122
svn path=/trunk/; revision=24212
2008-01-27Make it possible to do subdissection of Diameter AVP:s and add dissectionAnders Broman4-36/+93
of some 3GPP AVP:s. svn path=/trunk/; revision=24211
2008-01-27Uncomplete code change.Anders Broman1-2/+2
svn path=/trunk/; revision=24207
2008-01-27Fix reassembly.Anders Broman1-37/+36
svn path=/trunk/; revision=24205
2008-01-26Use the standard X.402 module as a separate file rather than as cut/paste ↵Graeme Lunt2-47/+47
into the ACP133 module. svn path=/trunk/; revision=24197
2008-01-26Remove "LDAP over SSL" registration as now handled by the LDAP dissector.Graeme Lunt1-1/+0
svn path=/trunk/; revision=24196
2008-01-261) Support for configurable LDAP over SSL portGraeme Lunt2-92/+295
2) Support for RFC 3909 - cancelRequest extendedOperation 3) Support for RFC 3062 - passwordModify extendedOperation 4) Column information for ExtendedRequest, SearchResultRef and AbandonRequest 5) Column information for multiple LDAP operations in the same packet (uses " | " separator) svn path=/trunk/; revision=24195
2008-01-261) Correct attribute name.Graeme Lunt1-18/+42
2) Add subtreespecification attribute. 3) Label each attribute in the tree with the attribute type. svn path=/trunk/; revision=24194
2008-01-25From Bill Florac:Jaap Keuter1-10/+10
Corrected ATTRRPLY dissection. Removed a few unnecessary semi-colons. svn path=/trunk/; revision=24193
2008-01-25Decode som more MBMS elements. Diameter XML fixes.Anders Broman1-8/+80
svn path=/trunk/; revision=24192
2008-01-25From Thomas Morin:Jaap Keuter1-8/+114
I have written the attached patch to improve the userfriendly-ness of the summary displayed in the last column of the packet list for IGMP packets. The current code only tells the user the type of packet (REPORT, LEAVE, QUERY), but doesn't include any information about what multicast group is joined to or left. Worse, for IGMPv3 Reports the user cannot tell quickly if the multicast group is joined-to or left, without having to look at the inside of the packet to know the type of report (include all, include none, exlude none, exclude all, etc.). svn path=/trunk/; revision=24190
2008-01-25From Bill Florac::Jaap Keuter1-59/+111
Corrected display of attributes from previous patch (24165) For V2, if field length was 0, do not display the empty field. This makes it easier to read. I only did V2 as I do not have means to test V1. svn path=/trunk/; revision=24189
2008-01-24Fixed some strcpy -> strncpy/g_snprintf cleanups.Stig Bjørlykke2-9/+8
Removed a debug printout in t38. svn path=/trunk/; revision=24188
2008-01-24Added some parantheses to avoid a warning.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=24187