aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Collapse)AuthorFilesLines
2006-05-31Editorial fixes from Thomas Dreibholz.Michael Tüxen2-44/+44
svn path=/trunk/; revision=18265
2006-05-31get rid of few warnings in packet-per.cTomas Kukosa1-5/+6
svn path=/trunk/; revision=18264
2006-05-31improve the tcp retransmission vs outoforder heuristics to address the issue ↵Ronnie Sahlberg1-2/+2
in PeterBruno's email of may18 dont reply to mailinglist that issue has been resolved since "ethereal" is still in limbo svn path=/trunk/; revision=18263
2006-05-31H.245 update to version 12 (10/2005)Tomas Kukosa1-212/+631
svn path=/trunk/; revision=18262
2006-05-31libethereal -> libwireshark. idl2eth -> idl2wrs. There are a _lot_ ofGerald Combs21-60/+60
changes here. It compiles OK on OS X, but hasn't been tested anywhere else. svn path=/trunk/; revision=18260
2006-05-30Preparations for reassembly. Currently there is a problem with the rrlp ↵Anders Broman1-7/+28
dissector... svn path=/trunk/; revision=18258
2006-05-29Ethereal->WiresharkAnders Broman2-5/+5
svn path=/trunk/; revision=18248
2006-05-29From Martin Mathieson:Anders Broman1-5/+40
- shows profile-specific extension data at the end of SR/RR reports (if packet length has not yet been reached after parsing normal data) and advances offset (further packets were not recognised+dissected as this data wasn't being skipped). svn path=/trunk/; revision=18245
2006-05-29From Martin Mathieson:Anders Broman1-4/+34
This version of the patch won't look for the authentication scheme (it just skips that part for Authentication-Info headers). I tested it using the enclosed file (pasted from the RFC and fed through od/text2pcap, then messed around with so I could test the other new parameters, even if they don't really belong in that header...). svn path=/trunk/; revision=18244
2006-05-29- h225.asn renamed to H323-MESSAGES.asnTomas Kukosa5-759/+985
- h245.asn renamed to MULTIMEDIA-SYSTEM-CONTROL.asn - rollback changes in .asn sources to keep them in original ITU-T form and put necessary changes into .cnf files - PER dissectors regenerated svn path=/trunk/; revision=18238
2006-05-28Ethereal->WiresharkAnders Broman38-96/+96
svn path=/trunk/; revision=18234
2006-05-28basic sdp dissector for the bluetooth stackRonnie Sahlberg2-0/+852
svn path=/trunk/; revision=18229
2006-05-27Fix bug 973:Anders Broman3-50/+89
While in 3GPP spec, the last two (Down/up nextPDCP-PDU seq. no.) would be 2 BYTES. So ethreal could not read the message correctly. We have to modify the log to make Ethreal analysis it. Add disection of TargetID. svn path=/trunk/; revision=18228
2006-05-27From Markus Meier:Anders Broman1-15/+255
Better dissection of chanel descriptions. svn path=/trunk/; revision=18227
2006-05-27Handle the case with only one speech sample.Anders Broman1-2/+5
svn path=/trunk/; revision=18226
2006-05-27Dissect RTP Redundancy Support correctly.Anders Broman1-4/+6
svn path=/trunk/; revision=18225
2006-05-27the bluetooth SCO transport layer from the affix bluetooth patchRonnie Sahlberg2-0/+116
svn path=/trunk/; revision=18224
2006-05-27add reassembly of bluetooth ACL packetsRonnie Sahlberg2-112/+109
doing the reassembly internally in acl instead of calling reassembly.c since the fragmentation is so simple and packets are so small anyway so full reassembly.c support would be overkill. svn path=/trunk/; revision=18223
2006-05-27initial bluetooth rfcomm dissector.Ronnie Sahlberg2-0/+1014
this dissector will not yet detect when ppp is passed over the rfcomm link but the old code to detect and deescapt the ppp data is still in the dissector, though ifdeffed out to serve as inspiration when ppp over rfcomm captures are made available. the only captures i have with rfcomm are for raw serial communications so they dont contain any ppp frames. :-( svn path=/trunk/; revision=18221
2006-05-26pass both chandle and cid from l2cap to higher layer protocols.Ronnie Sahlberg2-2/+22
higher layer protocols need the chandle, cid and direction (from pinfo) in order to identify packets for the same "conversation" (it is not a conversation per se in bluetooth butn one unidirectional flow that we track) svn path=/trunk/; revision=18220
2006-05-26protocols running atop ACL/L2CAP needs to be able to track pdus based onRonnie Sahlberg3-0/+39
acl chandle + direction + l2cap-CID to uniquely identify a single specific flow of PDU packets. So we need to pass the chandle upp from acl to l2cap at least. It would have been nice to handle this using "conversations" but the bluetooth stack does not eaily map to the idiom host:port<->host:port instead in bluetooth you have unidirectional flows that are identified by ACL-chandle:L2CAP-CID:direction and additional state held inside l2cap would attach two such flows together into a "conversation". Bluetooth packets themself only indentify "half" of the two way conversation. svn path=/trunk/; revision=18218
2006-05-24- remove some #.MODULE_IMPORT from .cng filesTomas Kukosa93-594/+581
- regenerate BER dissectors so as to change rest of Ethereal->Wireshark and asn2eth -> asn2wrs svn path=/trunk/; revision=18217
2006-05-23Atempt to fix bug 967 crash on fuzzed SNMP capture. I can't reproduce the Bug.Anders Broman2-18/+24
svn path=/trunk/; revision=18216
2006-05-23From Markus Meier:Anders Broman1-62/+9
The UMA-message Handover From UMAN Command includes the complete L3-message (and header) and not only the handover-IE's. svn path=/trunk/; revision=18215
2006-05-23From Martin Mathieson:Anders Broman3-5/+106
- Many DCT2000 protocols can be embedded within an IP primitive message. Add a heuristic to see if we can find the protocol payload within in IP primitive message, and look for an ethereal dissector matching the DCT2000 protocol name (this is useful for simple protocol testing where no physical links are involved) - Make some more of these protocols (diameter, http, mgcp) findable by name - Adds protocol 'variant' number to stub and dissector - Break the duplicated writing of the stub header out into a separate function svn path=/trunk/; revision=18212
2006-05-23Dissect rrlp payload.Anders Broman2-15/+50
svn path=/trunk/; revision=18211
2006-05-22- fix bugs in dissect_per_octet_string() introduced with unaligned variantTomas Kukosa22-26708/+26730
- step to new ASN.1 API - pass asn_ctx_t* through PER dissectors instead of packet_info* - PER ALIGNED/UNALIGNED flag moved to asn_ctx_t - PER created tree item pointer moved to asn_ctx_t - add nbap into PER dissectors in asn1/Makefile.nmake - use add_oid_str_name() instead of register_ber_oid_name() in H.225 and H.245 - export asn_ctx_init from library - PER dissectors regenerated svn path=/trunk/; revision=18209
2006-05-22ethereal->wiresharkRonnie Sahlberg9-10/+10
svn path=/trunk/; revision=18207
2006-05-22ethereal->wireshark updatesRonnie Sahlberg8-11/+11
svn path=/trunk/; revision=18206
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