aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
AgeCommit message (Collapse)AuthorFilesLines
2006-03-30call OID subdissector for private extensiions, fix makefiles.etxrab17-29/+85
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17772 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-30Fix an off-by-one error.gerald1-1/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17771 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-29Get rid of an unused variable.guy1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17764 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-28Function should return a value.jake1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17752 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-27From Jacques, Olivieretxrab2-0/+39
Here is a patch for gsm_map dissector that adds USSD string decoding (mainly used in processUnstructuredSS-Request, UnstructuredSS-Request, UnstructuredSS-Notify). For now, it assumes that it will be GSM 7 bits. It re-use packet-gsm_sms.c "gsm_sms_char_7bit_unpack" and "gsm_sms_char_ascii_decode" functions, as well as packet-smpp.c "smpp_handle_dcs" function. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17739 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-25Support for otherName and x400address in a GeneralNamegal4-3/+20
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17728 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-25Support for P1 Strong Authenticationgal3-34/+78
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17727 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-23Fix Bugsetxrab2-8/+13
820 gsm-map checkIMEI decoding error 821 gsm-map sendIMSI decoding error git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17703 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-22Fix http://bugs.ethereal.com/bugzilla/show_bug.cgi?id=820etxrab1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17695 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-20waste a couple of bytes per tcp conversation and make the tree for ↵sahlberg1-0/+1
acked_packets (i.e. packets that have interesting tcp properties such as being retransmissions etc) hang off the per conversation tcpd struct instead of being global. while this should improve performance by unmeasurably little it does have the sideeffect that once we finish the rewrite tcp analysis might actually work and work well even for tcp over tcp tunnelling. this also means that if you include packet-tcp.h you also need to include emem.h . git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17681 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-19Make the GUIDs in various data structures e_guid_t's rather than arraysguy3-8/+8
of 16 bytes. Use "sizeof" for the size of e_guid_t's, and use structure assignment to copy GUID values. Make functions such as append_h225ras_call() and new_h225ras_call() take pointers to e_guid_t's as arguments. Define GUID_LEN in epan/guid-utils.h and use it as the length of a GUID in a packet. (Note that "sizeof e_guid_t" is not guaranteed to be 16, although it is guaranteed to be the size of an e_guid_t.) When constructing a display filter that matches a GUID, use guid_to_str() to construct the string for the GUID. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17676 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-15Some more variable bindings and add some mising PDU types.etxrab3-11/+133
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17637 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-15Start implementing the variable binding part.etxrab3-10/+541
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17631 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-11give se_trees names so that it is easier to debug and to log how often ↵sahlberg1-4/+4
certain trees are accessed git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17587 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-11dont declare variables in the middle of a code block. many compilers do ↵sahlberg1-5/+5
not like that. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17573 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-10fix coverity CIDs 113 and 114.lego3-89/+122
while at it change the h248 context analysis to use se_trees instead of GHashTables git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17571 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-09Fix Bug 725: etxrab1-2/+2
0.10.14 shows "malformed packet" when showing H323 CS: FACILITY message with opcode "Calltransfer initiate" git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17542 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-08better support for ASN.1 Enumerated type in PER decodingkukosa1-2/+2
support in asn2eth will follow git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17530 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-05Make a new PER function dissect_per_enumerated() and use it for the two ↵etxrab1-0/+11
places in RANAP where extensions has been made to enumerations. asn2eth should be updated to use it. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17474 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-05Add the actual dissector, win makefile and update the asn1 makefile.etxrab2-0/+52
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17473 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-05propset ...jmayer3-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17472 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-05ACP133 attribute syntaxes and attribute definitions used by the DAP, DSP and ↵gal13-14/+705
DISP dissectors. Also includes X.402 definitions and OID registrations for object classes. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17471 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-01Replace commenting-out of code with "#if 0"/#endif" - it's a bit saferguy1-6/+9
(you don't have to worry about comments in #if 0'ed otu code), and it also fixes an unclosed comment (the commenting-out ended with /* rather than */). Fix up some indentation as well. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17434 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-23Add parsertab.pyc in clean targetetxrab33-57/+57
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17387 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-23Add parsertab.pyc in clean targetetxrab21-20/+177
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17386 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-23From Alejandro Vaquero:etxrab3-7/+10
a patch for the VoipCalls to fix a couple of issues: - a problem with the RTP Events (RFC2833) not been handle correctly - Display the RTP stream in time order when the setup frame is after the RTP stream. - fix a init issue that caused the H245 packet to not been displayed correctly. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17384 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-23Add TCAP ssnetxrab2-2/+25
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17376 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-22Add some missing files.etxrab5-0/+105
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17366 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-21Put in some of the old functionallity.etxrab3-23/+252
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17360 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-19Remove c++ style comment.etxrab1-26/+26
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17352 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-18From Florent.Drouin@alcatel.fretxrab1-23/+67
Add the same workaround used in packet-ftam.c for the bad handling of the asn "IMPLICIT SEQUENCE", in the packet-gsm_map-template.c. This patch concerns Map V3 messages, not correctly decoded with the previous workaround "offset=offset+2". Change a parameter for Provide Roaming Number decoding. Add a decoding fonction for "Channel needed" parameter to avoid a decoding error for Paging messages with a change to actually dissct channel needed. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17350 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-17Don't try to fill in last_dn if it doesn't exist. Fixes the current Buildbotgerald1-7/+10
failure. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17337 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-17Dissect the rest of the IE:setxrab1-1/+319
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17334 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-17Squelch some compiler warnings.guy1-21/+20
Fix indentation. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17331 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-16Add dissection of all Signals and more IE:setxrab2-366/+1327
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17322 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-16Paolo Abeni:jmayer1-1/+3
The attached patch should fix bug 742. The issue is (at least, I think so...) in the packet-x509af dissector A null pointer is passes as parameter of a " %s " format string. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17317 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-07Add a RFC value.etxrab1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17193 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-05H.248 over UDPlego1-3/+24
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17163 f5534014-38df-0310-8fa8-9805f1628bb7
2006-01-31Export dissector_handle_t get_itu_tcap_subdissector()etxrab2-1/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17136 f5534014-38df-0310-8fa8-9805f1628bb7
2006-01-31Fix a typoetxrab1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17135 f5534014-38df-0310-8fa8-9805f1628bb7
2006-01-31BSSGP - Translate MCC and make MCC MNC etc vissible filtersetxrab2-2/+24
GSMMAP - Small bugfix git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17132 f5534014-38df-0310-8fa8-9805f1628bb7
2006-01-31Fix a typo.etxrab1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17131 f5534014-38df-0310-8fa8-9805f1628bb7
2006-01-26Add the abillity to translate MCC.etxrab2-1/+21
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17105 f5534014-38df-0310-8fa8-9805f1628bb7
2006-01-22Dissect CellGlobalIdOrServiceAreaIdOrLAI and RAIdentityetxrab6-5/+57
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17075 f5534014-38df-0310-8fa8-9805f1628bb7
2006-01-21RANAP - Dissect ProtocolExtensionField IE:setxrab1-0/+4
GSM A - Service Request; Mobile identity element is LV type git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17069 f5534014-38df-0310-8fa8-9805f1628bb7
2006-01-20Dissect:etxrab1-0/+3
- PDPcontext - GSN-Address - QoS git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17063 f5534014-38df-0310-8fa8-9805f1628bb7
2006-01-20Dissect:etxrab3-22/+143
- PDPcontext - GSN-Address - QoS git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17062 f5534014-38df-0310-8fa8-9805f1628bb7
2006-01-20Dissect:etxrab3-44/+138
- PDPcontext - GSN-Address - QoS git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17061 f5534014-38df-0310-8fa8-9805f1628bb7
2006-01-19ext_qos_subscribed was not correctly decoded in Camel and GSM MAPetxrab2-7/+143
Change to use proto_add_item in packet-gsm_a.c for some octets and export value strings. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17055 f5534014-38df-0310-8fa8-9805f1628bb7
2006-01-18In packet-cops.c use proto_item_append_text() instead of creating agerald1-11/+18
separate buffer. Fixes the current Buildbot failure. Don't let the sprint_realloc_* functions reallocate ep_allocated memory. Add comments warning against this in the future. In emem.c, make sure we don't use an extra 100k every stinkin' time someone wants to allocate memory when debugging is enabled. Fixup whitespace. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17051 f5534014-38df-0310-8fa8-9805f1628bb7