aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/spnego/spnego.cnf
Commit message (Collapse)AuthorAgeFilesLines
* Use explicit casts.Anders Broman2013-03-041-3/+3
| | | | svn path=/trunk/; revision=48045
* Get rid of remaining Booleans-as-encoding-arguments inGuy Harris2012-05-111-1/+1
| | | | | | proto_tree_add_item() calls. svn path=/trunk/; revision=42557
* Initialize MechType_oid in the right place.Gerald Combs2010-07-011-2/+0
| | | | svn path=/trunk/; revision=33396
* Initialize more variables.Gerald Combs2010-07-011-0/+2
| | | | svn path=/trunk/; revision=33392
* Use find_or_create_conversation() in some ASN.1 dissectorsJeff Morriss2010-05-131-25/+7
| | | | svn path=/trunk/; revision=32791
* Fix gcc -Wshadow warning.Bill Meier2010-01-281-4/+4
| | | | svn path=/trunk/; revision=31715
* Switch to using tvb_new_subset_remaining() in .cnf files.Stig Bjørlykke2009-10-071-1/+1
| | | | svn path=/trunk/; revision=30386
* actx in the rest of dissect_ber..()lAnders Broman2007-05-151-1/+1
| | | | svn path=/trunk/; revision=21773
* Second step in introducing asn context to BER dissectors just like in PER.Anders Broman2007-05-131-23/+23
| | | | svn path=/trunk/; revision=21753
* if there is a list of mechTypes in the negTokenInit then store the first oneRonnie Sahlberg2006-12-131-16/+50
| | | | | | | | | | | | | and associate it with the conversation properly. do the same for supportedMech in the negTokenTarg This will allow wireshark to decode the blob in negTokenTarg even when no supportedMech is provided. svn path=/trunk/; revision=20129
* - dissect_ber_object_identifier() returns value as tvbTomas Kukosa2005-11-141-1/+1
| | | | | | | - new dissect_ber_object_identifier_str() function - BER dissectors adapted and regenerated svn path=/trunk/; revision=16501
* dissect_ber_octet_string() can return a null tvbuff pointer, if theGuy Harris2005-09-211-12/+11
| | | | | | | | putative octet string isn't one; always check before using it to dissect, and don't call the dissector if the tvbuff is null. This should fix bug 472. svn path=/trunk/; revision=15946
* Some compilers don't allow a static declaration of a function insideGuy Harris2005-09-211-3/+0
| | | | | | | another function, so move the declaration of dissect_spnego_PrincipalSeq() to the top of the file. svn path=/trunk/; revision=15938
* An InnerContextToken comes with an OID for the mechanism, which is whatGuy Harris2005-09-211-88/+179
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | we use to determine how to interpret the token; don't bother fetching the OID attached to the frame or conversation, as we're not using it. Indent code in the .cnf file to match the code generated by asn2eth. The mechListMIC in a NegTokenInit is sometimes a sequence containing a string; check the header of the mechListMIC and dissect it as such a sequence or as a regular item depending on whether it's a sequence or not. If we see a supportedMech in a NegTokenTarg, save next_level_value for that OID with the conversation. Dissect a responseToken in a NegTokenTarg, and a mechListMIC in a NegTokenTarg, appropriately. Get rid of "gssapi_dissector_handle()", and just use next_level_value->handle - it was never being called if next_level_value was null. When we're dissecting a KRB5 blob, just use get_ber_identifier() to get the header, so we don't report an ASN.1 error if there isn't a BER identifier there; dissect the identifier and length only if we know we have them. svn path=/trunk/; revision=15937
* Don't dereference a null pointer. Fixes bug 460.Gerald Combs2005-09-191-1/+1
| | | | svn path=/trunk/; revision=15874
* In the SPNEGO dissector, don't call a subdissector if we don't have a TVB.Gerald Combs2005-09-191-1/+4
| | | | | | | | Fixes bugs 448, 449, 451, 452, 454, 456, and 461. Add similar TVB checks to the BER dissector. svn path=/trunk/; revision=15869
* Replace the spnego dissector with an asn2eth generated one.Anders Broman2005-09-151-0/+128
svn path=/trunk/; revision=15810