aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
AgeCommit message (Collapse)AuthorFilesLines
2010-10-04Update to V9.4.0 (2010-09), no change in the asn1 def's.Anders Broman6-6/+7
svn path=/trunk/; revision=34362
2010-09-30Cleanup reassembly hf entries.Stig Bjørlykke1-9/+8
svn path=/trunk/; revision=34292
2010-09-30Cleanup reassembly hf entries.Stig Bjørlykke1-9/+8
svn path=/trunk/; revision=34291
2010-09-23Replace blurbs that match the name (case insensitive) with NULL.Jeff Morriss1-3/+3
svn path=/trunk/; revision=34227
2010-09-23Corrected check for attribute flag bits.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=34203
2010-09-23Show Abort source in info column.Stig Bjørlykke1-0/+12
svn path=/trunk/; revision=34202
2010-09-21The CLDAP attribute value on a CLDAP reply is no longer being decodedAnders Broman1-1/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5239 It got broken in Revision 33390 I think, if attr_type is unset at this point it should be set in the calling function. http://anonsvn.wireshark.org/viewvc/trunk/asn1/ldap/ldap.cnf?r1=33388&r2=33390 svn path=/trunk/; revision=34176
2010-09-21As suggested by Kovarththanan Rajaratnam in ↵Jeff Morriss1-1/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3548 : Clean up hf fields some more: mostly removing leading and trailing spaces from names and blurbs. svn path=/trunk/; revision=34165
2010-09-20Put Abort reason in info column.Stig Bjørlykke2-3/+12
svn path=/trunk/; revision=34159
2010-09-17Copy the rev 34143 changes to packet-snmp.c over to the asn1 source.Jeff Morriss1-13/+13
hf_snmp_engineid_enterprise is now a BASE_EXT_STRING, not BASE_RANGE_STRING. This fixes the fuzz failure in https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5233 svn path=/trunk/; revision=34151
2010-09-10From Martin Peylo via bug 5198:Stig Bjørlykke2-2/+10
Added missing OIDs in CRMF (RFC 4211) dissector. svn path=/trunk/; revision=34099
2010-09-08Do not report undecoded message to expert info for ReturnResult without ↵Tomas Kukosa1-7/+10
result filed svn path=/trunk/; revision=34076
2010-08-31From Pascal Quantin:Anders Broman2-4/+366
Patch that allows the dissection of the Feature Group Indicators bit string. I tested it with our UE and it works fine. svn path=/trunk/; revision=34035
2010-08-31Add stub code for future dissection of featureGroupIndicators.Anders Broman1-0/+6
svn path=/trunk/; revision=34032
2010-08-29Fix for Bug Packet details have errors when decode MAP V2 PRN_ACK msg Anders Broman2-2/+5
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5076 Use: /* * Dissect Multiple Choice Message * This function is used to decode a message, when several encoding may be used. * For exemple, in the last MAP version, the Cancel Location is defined like this: * CancelLocationArg ::= [3] IMPLICIT SEQUENCE * But in the previous MAP version, it was a CHOICE between a SEQUENCE and an IMSI * As ASN1 encoders (or software) still uses the old encoding, this function allows * the decoding of both versions. * Moreover, some optimizations (or bad practice ?) in ASN1 encoder, removes the * SEQUENCE tag, when only one parameter is present in the SEQUENCE. * This explain why the function expects 3 parameters: * - a [3] SEQUENCE corresponding the recent ASN1 MAP encoding * - a SEQUENCE for old style * - and a single parameter, for old version or optimizations * * The analyze of the first ASN1 tag, indicate what kind of decoding should be used, * if the decoding function is provided (so not a NULL function) */ svn path=/trunk/; revision=34001
2010-08-27From Dirk via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5150 : ↵Jeff Morriss1-0/+2
remove Makefile.in from the asn1 directories when doing a maintainer-clean svn path=/trunk/; revision=33955
2010-08-24Display content entry (with length) in tree.Stig Bjørlykke1-1/+2
svn path=/trunk/; revision=33914
2010-08-24Fix modifier in .cnf file.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=33913
2010-08-24Rewrote to fetch content_tvb from dissect_ber_octet_string().Stig Bjørlykke1-16/+5
Display eContent entry (with length) in tree. svn path=/trunk/; revision=33912
2010-08-24Display octet string fragments for RTSE segment data.Stig Bjørlykke1-4/+7
svn path=/trunk/; revision=33911
2010-08-24Indicate abort and abort-reason in info column.Stig Bjørlykke1-0/+17
svn path=/trunk/; revision=33908
2010-08-24Add Id.Anders Broman2-0/+2
svn path=/trunk/; revision=33907
2010-08-16Added Info for RTTPapdu.Stig Bjørlykke1-0/+10
svn path=/trunk/; revision=33809
2010-08-03Added some missing elements from MS Certificate:Stig Bjørlykke1-0/+3
- Previous Cert Hash - Virtual Base - Next Publisher svn path=/trunk/; revision=33695
2010-08-02Mark encryptedData as unused, to avoid warnings when not HAVE_LIBGCRYPT.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=33691
2010-08-02Added missing include <string.h>.Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=33690
2010-07-02oid_encoded2string() returns a const char *; don't assign it to a charGuy Harris1-2/+4
*. Don't declare variables in the middle of a block; not all the compilers we use support that. svn path=/trunk/; revision=33409
2010-07-01Don't add raw bytes to the tree.Gerald Combs1-2/+3
svn path=/trunk/; revision=33403
2010-07-01Initialize MechType_oid in the right place.Gerald Combs2-3/+1
svn path=/trunk/; revision=33396
2010-07-01Initialize more variables.Gerald Combs2-2/+4
svn path=/trunk/; revision=33392
2010-06-30Initialize a variable.Gerald Combs1-0/+2
svn path=/trunk/; revision=33390
2010-06-30Initialize a variable.Gerald Combs1-0/+1
svn path=/trunk/; revision=33388
2010-06-30Sort filename expansionKovarththanan Rajaratnam1-1/+1
svn path=/trunk/; revision=33381
2010-06-29Interpret single-ASN1-type as ASN.1 and not as an OCTET STRING.Graeme Lunt2-2/+1
svn path=/trunk/; revision=33375
2010-06-29Decode parameters as ASN.1 directly and avoid interpreting as an OCTET STRING.Graeme Lunt1-29/+6
svn path=/trunk/; revision=33374
2010-06-29New "#.SYNTAX" section for the asn2wrs conformance file. Graeme Lunt1-17/+16
This allows syntaxes to be registered separately from PDUs. Within the new section, the ASN.1 types to be used as syntaxes should be iterated. An optional second parameter on each line may be provided to provide an alternative name for the syntax (that the user will see). This name must be in double quotes. svn path=/trunk/; revision=33370
2010-06-29Update to V9.3.0 (2010-06)Anders Broman6-21/+38
Export ENB-StatusTransfer-TransparentContainer svn path=/trunk/; revision=33369
2010-06-28Add the missing packet-s1ap.hStig Bjørlykke1-0/+30
svn path=/trunk/; revision=33356
2010-06-28Dissect more GTPV2 IE'sAnders Broman3-2/+12
svn path=/trunk/; revision=33351
2010-06-28Removal of various warnings, mainly by not emitting functions for ASN.1 ↵Graeme Lunt4-4/+50
types that are only used for COMPONENTS OF. svn path=/trunk/; revision=33350
2010-06-28Moved register_ber_syntax_dissector() and register_ber_oid_syntax() fromStig Bjørlykke4-15/+12
proto_reg_handoff_* to proto_register_*. svn path=/trunk/; revision=33345
2010-06-28Remove the -R flag (used to generate syntax registrations) and replace with a Graeme Lunt2-1/+3
packet-<proto>-syn-reg.c output file. This is more generic and allows the syntax registrations to the directed from the template file. svn path=/trunk/; revision=33342
2010-06-27Initialize attributedesc_string in a couple of places so that weGerald Combs2-9/+7
don't end up trying to use an invalid pointer. svn path=/trunk/; revision=33341
2010-06-26From KATAOKA Toshihiro:Anders Broman1-6/+2
3GPP S1AP Transparent Container. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4913 svn path=/trunk/; revision=33330
2010-06-26Avoid crash when adding SNMP Users.Stig Bjørlykke1-7/+8
This fixes bug 4926. svn path=/trunk/; revision=33329
2010-06-24Build dependency to x411.Stig Bjørlykke1-1/+5
svn path=/trunk/; revision=33314
2010-06-23Update to register basic ASN.1 syntaxes.Graeme Lunt3-9/+32
svn path=/trunk/; revision=33299
2010-06-23FromToshihiro Kataoka:Anders Broman3-0/+20
Dissect 3GPP S1AP UE Capability Info Indication. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4904 svn path=/trunk/; revision=33294
2010-06-21Corrected printed name for id-permissiveAttributes.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=33277
2010-06-18Add new strings/dissector function for signalling RRC messages that will addMartin Mathieson1-0/+56
lte_rrc root to the protocol tree. Makes filtering on call signalling easier. TODO: same for other RRC entry points... svn path=/trunk/; revision=33251