aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
Commit message (Collapse)AuthorAgeFilesLines
* Corrected "old-style function definition".Stig Bjørlykke2011-05-271-1/+1
| | | | svn path=/trunk/; revision=37433
* Corrected "old-style function definition".Stig Bjørlykke2011-05-271-1/+4
| | | | svn path=/trunk/; revision=37429
* Make TVBs opaque for most users.Jeff Morriss2011-05-271-15/+15
| | | | | | Convert TVB_RAW_OFFSET() and TVB_GET_DS_TVB() into functions. svn path=/trunk/; revision=37422
* Treat TVBs as opaque: use the accessor functions instead of accessing the fieldsJeff Morriss2011-05-271-68/+68
| | | | | | directly. svn path=/trunk/; revision=37420
* Remove a backslash.Gerald Combs2011-05-251-1/+1
| | | | svn path=/trunk/; revision=37395
* Make it easier to add custom asn1 dissectors.Anders Broman2011-05-252-1/+30
| | | | svn path=/trunk/; revision=37393
* Fix a couple (value) mistakes in value_strings. Found by Martin's patch on ↵Jeff Morriss2011-05-181-5/+5
| | | | | | the -dev list. svn path=/trunk/; revision=37259
* Build with S1AP-SonTransfer-IEs.asnStig Bjørlykke2011-05-131-1/+2
| | | | svn path=/trunk/; revision=37117
* Indicate Signed Receipt in info column.Stig Bjørlykke2011-05-121-0/+5
| | | | svn path=/trunk/; revision=37074
* From Ed Day via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5890 :Jeff Morriss2011-05-066-419/+506
| | | | | | | | | | | ASN.1 files in trunk/asn1/qsig contain syntax errors that prevent them from being compiled by a standard ASN.1 compiler. A patch of modified files is attached along with General-Error-List.asn which was missing completely. From me: add the new asn file to the list of source files. Add SVN Id tag to the new file. svn path=/trunk/; revision=37005
* From Pascal Quantin:Anders Broman2011-05-042-4/+34
| | | | | | Add an expert check for the MS Classmark 2 decoding in UE EUTRA Capability message and a few missing message type display in the column text. svn path=/trunk/; revision=36984
* From Pascal Quantin:Anders Broman2011-04-281-3/+17
| | | | | | | | | | the dissection of the UE capabilities when the RAT type is set to geran-cs (the value part of Classmark 2 starts at the third byte). Moreover it adds a subtree to enhance the display of Mobile Station Classmark 2 and 3 and MS Radio Access Capability IEs. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5867 svn path=/trunk/; revision=36943
* From Stefan Metzmacher and Gregor Beck via ↵Jeff Morriss2011-04-211-1/+30
| | | | | | | | https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5850 : The smallest LDAP PDU is 7 bytes, not 4. svn path=/trunk/; revision=36777
* Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte2011-04-211-1/+1
| | | | svn path=/trunk/; revision=36771
* Fix Dead Store (Dead nested assignment) Warning found by Clang Alexis La Goutte2011-04-211-1/+1
| | | | svn path=/trunk/; revision=36760
* Rollback r36614 and change dissect_SMUX_PDUs_PDU() to use previouslyStephen Fisher2011-04-131-2/+3
| | | | | | | unused smux_tree instead of tree. Per suggestion from Stig on -dev. svn path=/trunk/; revision=36624
* Fix Coverity 524: NEGATIVE_RETURNSStephen Fisher2011-04-121-2/+2
| | | | | | | | | | | | | | Coverity sees that two calls to tvb_length_remaining() with an offset of 0 may return -1 (for an "out of bounds" condition), which would lead to an assignment of -1 to an unsigned variable and then passing it to functions further down that cannot accept negative values. Use tvb_ensure_length_remaining() to throw an exception in a case of out of bounds access (though unlikely with an offset of 0) instead of tvb_length_remaining(), which would return -1. svn path=/trunk/; revision=36615
* Fix Coverity 1047: UNUSED_VALUE in dissect_smuxStephen Fisher2011-04-121-2/+1
| | | | svn path=/trunk/; revision=36614
* Add x509if_frame_end() which is passed to register_frame_end_routine()Gerald Combs2011-04-122-13/+35
| | | | | | | | and which resets our global variables. Remove a boolean which was used to track a char *; just check if the pointer is NULL instead. Fixes bugs 5754 and 5793, hopefully without breaking anything. svn path=/trunk/; revision=36608
* Removed some unused variables.Stig Bjørlykke2011-04-121-3/+2
| | | | svn path=/trunk/; revision=36602
* Corrected switch-case flow.Stig Bjørlykke2011-04-121-1/+1
| | | | | | Coverity 1184. svn path=/trunk/; revision=36579
* Rename ws_stat to ws_stat64, and make it take a pointer to a ws_statb64Guy Harris2011-04-101-2/+2
| | | | | | | as an argument, along the lines of ws_fstat64, and, on Windows, make it use _wstati64, to handle 64-bit file sizes. svn path=/trunk/; revision=36547
* From Pascal Quantin:Anders Broman2011-04-083-4/+51
| | | | | | A patch adding the missing hunks (it looks like extract_asn1_from_spec.pl script is mixing Windows and Linux line endings). svn path=/trunk/; revision=36524
* From Pascal Quantin:Anders Broman2011-04-084-154/+318
| | | | | | | | Upgrade LTE RRC ASN.1 description to V9.6.0 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5815 svn path=/trunk/; revision=36520
* Use a unique variable name. Fixes Coverity CID 593.Gerald Combs2011-04-071-4/+4
| | | | svn path=/trunk/; revision=36512
* Add a commentAnders Broman2011-04-061-0/+15
| | | | svn path=/trunk/; revision=36490
* Missing decoding for CalledPartyBCD number in CAMELAnders Broman2011-04-062-0/+14
| | | | | | https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5788 svn path=/trunk/; revision=36488
* Compile fix: camel_obj_id -> obj_id.Stig Bjørlykke2011-04-051-1/+1
| | | | svn path=/trunk/; revision=36475
* Actually get the oid string ...Anders Broman2011-04-051-1/+4
| | | | svn path=/trunk/; revision=36474
* Change the signature of elem_fcn():ns to include pinfo.Anders Broman2011-04-043-11/+11
| | | | svn path=/trunk/; revision=36443
* -Whitespace fix in gsm_map-template(no need to regenerate).Anders Broman2011-04-023-3/+16
| | | | | | | | | - Fix dissection of extensions in INAP it should now be possible to add an "OID dissector" for extensions. Should fix BUG https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5799 svn path=/trunk/; revision=36435
* Added FALLTHRU comment to avoid a "missing break" warning.Anders Broman2011-03-271-2/+12
| | | | svn path=/trunk/; revision=36365
* From Didier via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3055 :Jeff Morriss2011-03-251-1/+9
| | | | | | | | | | | | | Apply rev 25869 to most of the rest of the TCP-desegmenting dissectors. (The SSL dissector was already updated in one of two spots with bug 4535/rev 32456.) A couple of the patches had to be manually applied. From me: Fix the comments to match the change (including in the TCP and SSL dissectors.) svn path=/trunk/; revision=36332
* Properly initialize our filter counters.Gerald Combs2011-03-141-0/+4
| | | | svn path=/trunk/; revision=36190
* Export SONtransferRequestContaine, SONtransferResponseContainerand and ↵Anders Broman2011-03-031-0/+3
| | | | | | Global-ENB-ID svn path=/trunk/; revision=36130
* QSIG: decoding of PSS1InformationElementTomas Kukosa2011-03-012-0/+16
| | | | svn path=/trunk/; revision=36108
* If we encounter an excessively long filter string or one with too manyGerald Combs2011-03-012-0/+17
| | | | | | | | elements, add an expert item and throw a ReportedBoundsError. We may want to handle this more cleanly in the future but this avoids allocating a huge amount of memory. svn path=/trunk/; revision=36101
* Export:Anders Broman2011-02-271-0/+6
| | | | | | | | SONtransferRequestContainer SONtransferResponseContainer SONtransferCause svn path=/trunk/; revision=36086
* Add miisng file from Anders Broman2011-02-271-0/+2
| | | | | | http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=36079 svn path=/trunk/; revision=36085
* Add dissection of SonTransfer-IEs.Anders Broman2011-02-272-0/+189
| | | | svn path=/trunk/; revision=36084
* Export SourceCellID.Anders Broman2011-02-271-5/+7
| | | | svn path=/trunk/; revision=36083
* Add exports.Anders Broman2011-02-241-0/+6
| | | | svn path=/trunk/; revision=36049
* Split get_dns_name() into get_dns_name() and expand_dns_name().Gerald Combs2011-02-232-57/+13
| | | | | | | | | | | In dissect_ms_compressed_string() dissect_mscldap_string() simply call expand_dns_name() instead of using duplicate (and insecure) code. This *might* break CLDAP and SMB dissection. If that's the case we should probably revert get_dns_name() and simplify expand_dns_name(). Fixes infinite recursion errors found by joernchen of Phenoelit. svn path=/trunk/; revision=36029
* Ensure we always have a valid top_tree for p1.content. This fixes a problemStig Bjørlykke2011-02-224-3/+44
| | | | | | | | | | | | with other dissectors using p1.content, such as p7. Reset global content_type_id so this will be correct in more cases. This is still not a good solution, because ContentType and Content are generic objects which may occur individual in P7. Indicate when to report invalid content-type. svn path=/trunk/; revision=36025
* Renamed x411 to p1, x420 to p22 and s4406 to p772 to be consistentStig Bjørlykke2011-02-2057-417/+417
| | | | | | on the naming policy for X.400 protocols. svn path=/trunk/; revision=36013
* Add changes in r35546 to template and conformation file.Stig Bjørlykke2011-02-202-9/+9
| | | | svn path=/trunk/; revision=36010
* Add changes in r35384 to template file.Stig Bjørlykke2011-02-201-8/+4
| | | | svn path=/trunk/; revision=36009
* Generate correct type (FT_OID) for "x420.compression_algorithm_id".Stig Bjørlykke2011-02-161-2/+2
| | | | | | I suspect this should have been fixed in asn2wrs... svn path=/trunk/; revision=35965
* Remove an unused ett_ variable.Jeff Morriss2011-02-121-2/+0
| | | | svn path=/trunk/; revision=35927
* Declare ett's as gint, not guint.Chris Maynard2011-02-101-1/+1
| | | | svn path=/trunk/; revision=35902