aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/spnego/packet-spnego-template.c
AgeCommit message (Collapse)AuthorFilesLines
2005-09-21Some compilers don't allow a static declaration of a function insideGuy Harris1-0/+9
another function, so move the declaration of dissect_spnego_PrincipalSeq() to the top of the file. svn path=/trunk/; revision=15938
2005-09-21An InnerContextToken comes with an OID for the mechanism, which is whatGuy Harris1-42/+29
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
2005-09-15Don't use u_char - not all platforms define it, and even those that doGuy Harris1-2/+2
might require other files to be included to get it. svn path=/trunk/; revision=15828
2005-09-15Replace the spnego dissector with an asn2eth generated one.Anders Broman1-0/+1074
svn path=/trunk/; revision=15810