aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Collapse)AuthorFilesLines
2006-05-21name changeRonnie Sahlberg198-404/+404
svn path=/trunk/; revision=18197
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg870-2248/+2248
svn path=/trunk/; revision=18196
2006-05-20Put a newline at the end of the file.Guy Harris1-1/+1
svn path=/trunk/; revision=18193
2006-05-18From Ted Percival:Jaap Keuter1-4/+129
I have updated the TELNET dissector to dissect encryption negotiation commands as specified by RFC 2946. svn path=/trunk/; revision=18187
2006-05-18As suggested by Jim Prince, pass the right argument to "getcwd()" - theGuy Harris1-1/+1
buffer argument is a mallocated buffer, so sizeof doesn't return its size, it returns the size of the pointer to the buffer. Fixes bug 907. svn path=/trunk/; revision=18186
2006-05-18Put a newline at the end of the file.Guy Harris1-1/+1
svn path=/trunk/; revision=18184
2006-05-18Improve fix for Bug 915 by using GetVersionEx() as it is recommended by ↵Lars Roland1-7/+12
Microsoft. Tested on Win98 SE. svn path=/trunk/; revision=18183
2006-05-17Decode Ext-GeographicalInformation.Anders Broman3-30/+327
svn path=/trunk/; revision=18182
2006-05-17Fix decoding of Ext-GeographicalInformation.Anders Broman2-28/+34
svn path=/trunk/; revision=18181
2006-05-17Add missing add_new_data_source.Anders Broman1-0/+1
svn path=/trunk/; revision=18180
2006-05-17Fix BUGs:Anders Broman3-71/+34
955 UMA: Handover Command message not decoded. 956 UMA: multirate-configuration not decoded correctly . 957 UMA: Received Signal Level List not decoded. svn path=/trunk/; revision=18179
2006-05-17attempt to fix #915:Ulf Lamping1-2/+6
if the GetVersionEx() call fails, force the dwPlatformId to VER_PLATFORM_WIN32_WINDOWS so the return value from VirtualProtect() won't trigger an assert. svn path=/trunk/; revision=18178
2006-05-17for "connection oriented channels" place a generated psm field in the ↵Ronnie Sahlberg1-1/+10
display to make it filterable and also to show what the payload should be. svn path=/trunk/; revision=18177
2006-05-16PER:Anders Broman3-21/+88
Adapt dissect_per_octet_string to unaligned PER. Call rrlp dissector from ulp dissector. svn path=/trunk/; revision=18176
2006-05-16From Axel Schwenke:Anders Broman1-617/+1742
- complete dissector for greeting/login packets - nearly complete dissector for requests, except: + parameters for COM_EXECUTE + requests from replication slave - added some features to response dissectors svn path=/trunk/; revision=18174
2006-05-16From Martin Mathieson:Anders Broman1-3/+7
- adds application/xpidf+xml as a media type known to be xml - appends /xml to the protocol column (as SDP does). It would be nice to append the top-level element, or the name taken from a matching DTD, but this will do for now (at least its a short name). - corrects the help text for the preference. I can see that it is registered as a heuristic for "http", "sip" and "media" I've also included a slightly updated version of reginfo.dtd (RFC 3680) for the dtds folder. svn path=/trunk/; revision=18173
2006-05-16add dissection of the bluetooth btl2cap layerRonnie Sahlberg3-0/+875
svn path=/trunk/; revision=18170
2006-05-15Change return value checking to the true meaning of the spec:Jaap Keuter1-2/+2
"If the function succeeds, the return value is nonzero." This may or may not solve bug 915. svn path=/trunk/; revision=18168
2006-05-15Fix bug 951 UMA: message URR_RELEASE not decoded corretly Anders Broman1-25/+10
and 952 UMA: IE length-field of UMA-message can always be 2 bytes svn path=/trunk/; revision=18167
2006-05-15dissect_diameter_tcp should be static voidAnders Broman1-5/+2
svn path=/trunk/; revision=18166
2006-05-15PER Enumerated is working now.Anders Broman2-10/+3
svn path=/trunk/; revision=18165
2006-05-15Don't throw an exception in oid_to_subid_buf() if the generated OID isGuy Harris1-40/+38
zero-length - oid_to_subid_buf() can be called when we're not in the middle of a dissection, and throwing a "dissector bug" assertion in that case is itself a bug. svn path=/trunk/; revision=18164
2006-05-15regenerated with new asn2ethTomas Kukosa4-467/+467
svn path=/trunk/; revision=18158
2006-05-15updated to H.235.0:09/2005 and H.235.8:09/2005 Tomas Kukosa2-17/+581
svn path=/trunk/; revision=18157
2006-05-15H.225, H.245, H.450 regenerated with new asn2ethTomas Kukosa4-70/+87
svn path=/trunk/; revision=18156
2006-05-15From Jelmer Vernooij:Anders Broman1-1/+15
Add proper dissection for the Ack message in OSCAR's Messaging SNAC family. svn path=/trunk/; revision=18153
2006-05-15Make "oct" in "dis_field_ud()" a guint8, as we never stuff anythingGuy Harris1-2/+2
bigger than an 8-bit value in it, and guint is too big as we pass something based on it to a routine expecting a guint16. svn path=/trunk/; revision=18152
2006-05-14add bluetooth acl dissectionRonnie Sahlberg3-1/+298
the fragment reassembly from the old patch is commented out since it has to be redone completely using emem and se_trees the proper way. but to do this i would need example captures of fragmented bluetooth traffic first. svn path=/trunk/; revision=18149
2006-05-14Remove stupid code.Anders Broman1-15/+2
svn path=/trunk/; revision=18148
2006-05-14delete the wrong evt dissectorRonnie Sahlberg1-1692/+0
svn path=/trunk/; revision=18147
2006-05-14checkin the correct hci evt dissectorRonnie Sahlberg1-0/+2195
svn path=/trunk/; revision=18146
2006-05-14bluetooth hci event dissectorRonnie Sahlberg4-16/+1709
svn path=/trunk/; revision=18145
2006-05-13snmp: Hopfully fix bug Bug 925.Anders Broman2-39/+74
Add packet-ulp.c missing from last commit. svn path=/trunk/; revision=18144
2006-05-13Make dissect_per_constrained_integer handle unaligned PER.Anders Broman1-21/+33
Add ULP TCP port preference decode IPv4/IPv6 fields. svn path=/trunk/; revision=18143
2006-05-11Fix Bug 938 ISUP IAM message marked as Malformed packet - Location number ↵Anders Broman1-1/+2
without address digits wrongly decoded. svn path=/trunk/; revision=18138
2006-05-11Removal of useless "Field Information" introduced in r18125Graeme Lunt3-35/+0
svn path=/trunk/; revision=18133
2006-05-10Implement DVMRP_V3_NEIGHBORS_2 presentation.Jaap Keuter1-4/+113
svn path=/trunk/; revision=18128
2006-05-10Fix for bug 924. Adding preference whether to check the DVMRP V3 Major/Minor ↵Jaap Keuter1-7/+15
version. svn path=/trunk/; revision=18127
2006-05-10Wrong exported symbolGraeme Lunt1-1/+1
svn path=/trunk/; revision=18126
2006-05-10"Field Information" context menu item that will bring up a web page ↵Graeme Lunt5-2/+37
reference to a field type of FT_OID svn path=/trunk/; revision=18125
2006-05-10Add 3GPP Radio Resource LCS Protocol (RRLP) packet dissectorAnders Broman3-0/+5060
svn path=/trunk/; revision=18124
2006-05-10from Christoph Scholz's bluetooth patchRonnie Sahlberg2-0/+1934
add dissection of HCI Command protocol to ethereal svn path=/trunk/; revision=18122
2006-05-10add Bluetooth to the long protocol nameRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18120
2006-05-10Preparations to be able to handle unaligned PER.Anders Broman10-18/+34
svn path=/trunk/; revision=18119
2006-05-09- Some minor asn1 correctionsAnders Broman1-10/+27
- Dissect Enumerated correctly - Add message to info col. svn path=/trunk/; revision=18117
2006-05-09The AMID type and tag are two bytes, not four. The PSID should be shownGerald Combs1-5/+5
in decimal, not hex. svn path=/trunk/; revision=18116
2006-05-09Propset...Jörg Mayer2-2/+2
svn path=/trunk/; revision=18115
2006-05-09Make top_tree static. This allows ethereal to be built on Mac OS X.Michael Tüxen2-2/+2
svn path=/trunk/; revision=18113
2006-05-09Add the first layer of the bluetooth stack dissecting the hci h4 single byteRonnie Sahlberg3-0/+182
refactyored from the affix patch by Christoph Scholz svn path=/trunk/; revision=18112
2006-05-08Basic Encoding Rules (BER) encoded file reading. Not really a packet trace ↵Graeme Lunt1-0/+20
format but still useful for dissecting arbitrary BER/DER ASN.1. svn path=/trunk/; revision=18110