Home
last modified time | relevance | path

Searched refs:tok_out (Results 1 – 2 of 2) sorted by relevance

/freebsd-9-stable/contrib/cvs/src/
Dclient.c4186 gss_buffer_desc *tok_in_ptr, tok_in, tok_out; local
4213 0, NULL, tok_in_ptr, NULL, &tok_out,
4222 GSS_C_NULL_OID, &message_context, &tok_out);
4224 (char *) tok_out.value);
4228 GSS_C_NULL_OID, &message_context, &tok_out);
4230 (char *) tok_out.value);
4233 if (tok_out.length == 0)
4242 cbuf[0] = (tok_out.length >> 8) & 0xff;
4243 cbuf[1] = tok_out.length & 0xff;
4246 if (send (sock, tok_out.value, tok_out.length, 0) < 0)
Dserver.c6095 gss_buffer_desc tok_in, tok_out; in gserver_authenticate_connection() local
6158 &tok_out, /* output_token */ in gserver_authenticate_connection()
6187 if (tok_out.length != 0) in gserver_authenticate_connection()
6191 cbuf[0] = (tok_out.length >> 8) & 0xff; in gserver_authenticate_connection()
6192 cbuf[1] = tok_out.length & 0xff; in gserver_authenticate_connection()
6194 || (fwrite (tok_out.value, 1, tok_out.length, stdout) in gserver_authenticate_connection()
6195 != tok_out.length)) in gserver_authenticate_connection()