Home | History | Annotate | Download | only in lib

Lines Matching full:gss

44  * Helper GSS-API error functions.
61 /* convert major status code (GSS-API error) to text */
95 failf(data, "GSS-API error: %s failed:\n%s", function, buf);
123 unsigned char socksreq[4]; /* room for GSS-API exchange header only */
127 /* GSS-API request looks like
189 failf(data, "Failed to initial GSS-API token.");
194 socksreq[0] = 1; /* GSS-API subnegotiation version */
201 failf(data, "Failed to send GSS-API authentication request.");
213 failf(data, "Failed to send GSS-API authentication token.");
229 /* GSS-API response looks like
239 failf(data, "Failed to receive GSS-API authentication response.");
255 failf(data, "Invalid GSS-API authentication response type (%d %d).",
269 "Could not allocate memory for GSS-API authentication "
280 failf(data, "Failed to receive GSS-API authentication token.");
325 infof(data, "SOCKS5 server authencticated user %s with GSS-API.\n",user);
330 socksreq[0] = 1; /* GSS-API subnegotiation version */
341 infof(data, "SOCKS5 server supports GSS-API %s data protection.\n",
360 * first version of the SOCKS/GSS-API protocol
367 * - "token" is the GSS-API encapsulated protection level
396 failf(data, "Failed to wrap GSS-API encryption value into token.");
407 failf(data, "Failed to send GSS-API encryption request.");
417 failf(data, "Failed to send GSS-API encryption type.");
426 failf(data, "Failed to send GSS-API encryption type.");
436 failf(data, "Failed to receive GSS-API encryption response.");
450 failf(data, "Invalid GSS-API encryption response type (%d %d).",
469 failf(data, "Failed to receive GSS-API encryptrion type.");
484 failf(data, "Failed to unwrap GSS-API encryption value into token.");
490 failf(data, "Invalid GSS-API encryption response length (%d).",
502 failf(data, "Invalid GSS-API encryption response length (%d).",
514 (socksreq[0]==0)?"out GSS-API data":
515 ((socksreq[0]==1)?" GSS-API integrity":" GSS-API confidentiality"));