aboutsummaryrefslogtreecommitdiffstats
path: root/packet-gssapi.c
AgeCommit message (Collapse)AuthorFilesLines
2002-08-31Make "gssapi_init_oid()" take a dissector handle rather than aGuy Harris1-4/+4
registered dissector name; that means you don't have to register a dissector by name to associate it with a GSS-API security mechanism OID. svn path=/trunk/; revision=6163
2002-08-31Make sure we stop processing GSS-API tokens when we actually have finishedRichard Sharpe1-1/+2
and not try to parse unrelated info in the TVB. svn path=/trunk/; revision=6162
2002-08-31Catch exceptions thrown while dissecting the GSS-API stuff, so that weGuy Harris1-121/+141
don't abort dissection of the entire packet if we get a ReportedBoundsError while dissecting an authentication blob - the authentication blob might be in the middle of a packet, and if it's too short, that doesn't mean that the stuff *after* it shouldn't be dissected. svn path=/trunk/; revision=6160
2002-08-29OK, we now dissect the innerContextToken properly, and SPNEGO understands aRichard Sharpe1-2/+6
negTokenTarg, there is just more work to do on this. svn path=/trunk/; revision=6127
2002-08-29OK, add more conversation stuff for gssapi ... see iff it works now.Richard Sharpe1-17/+44
svn path=/trunk/; revision=6126
2002-08-29Start the code to keep state in GSSAPI.Richard Sharpe1-8/+27
Since we only need the dissector handle, I cheated :-) This should not cause problems (famous last words) svn path=/trunk/; revision=6125
2002-08-29Guided by Guy and an examination of RFC2078 and RFC2478, I have added someRichard Sharpe1-1/+14
comments about what we need to do to get SPNEGO properly implemented. More work to do. svn path=/trunk/; revision=6121
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-12/+12
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6117
2002-08-28Ohh, I feel so good. More of SPNEGO ...Richard Sharpe1-2/+5
Still more to come. SHould have the negTokenInit done soon, then onto the negTokenTarg ... svn path=/trunk/; revision=6109
2002-08-27OK, fix up the problems of the previous commit ...Richard Sharpe1-8/+3
svn path=/trunk/; revision=6105
2002-08-26Plug a memory leak, by freeing the OID string generated byGuy Harris1-5/+27
"format_oid()" after we're done with it. "format_oid()" doesn't necessarily generate a string containing only the numerical OID value, so we can't use that string to search for an OID in the OID hash table. Generate the string used in that lookup ourselves, instead. svn path=/trunk/; revision=6089
2002-08-25Small fix to get the OIDs to display properly in GSSAPI.Richard Sharpe1-6/+8
Next to turn SPNEGO into SPNEGO and not SNEGO ... and display the contents properly as NTLMSSP. svn path=/trunk/; revision=6083
2002-08-24Make the filter name for GSS-API tokens "gss-api", not "GSS-API", toGuy Harris1-2/+2
1) match the protocol's filter name (which isn't used, as we never put entries into the protocol tree for the protocol itself) and 2) make it more obvious what you type. (This matches what the NTLMSSP dissector does for its security blobs.) svn path=/trunk/; revision=6076
2002-08-21A dissector for GSS-API (rfc2078). This is used by Windows 2000/XP whenTim Potter1-0/+231
the extended security bit is set. svn path=/trunk/; revision=6047