Searched refs:tok_out (Results 1 – 2 of 2) sorted by relevance
/openbsd/gnu/usr.bin/cvs/src/ |
H A D | client.c | 4250 gss_buffer_desc *tok_in_ptr, tok_in, tok_out; local 4275 0, NULL, tok_in_ptr, NULL, &tok_out, 4284 GSS_C_NULL_OID, &message_context, &tok_out); 4286 (char *) tok_out.value); 4290 GSS_C_NULL_OID, &message_context, &tok_out); 4292 (char *) tok_out.value); 4295 if (tok_out.length == 0) 4304 cbuf[0] = (tok_out.length >> 8) & 0xff; 4305 cbuf[1] = tok_out.length & 0xff; 4308 if (send (sock, tok_out.value, tok_out.length, 0) < 0)
|
H A D | server.c | 6123 gss_buffer_desc tok_in, tok_out; in gserver_authenticate_connection() local 6175 &tok_out, /* output_token */ in gserver_authenticate_connection() 6204 if (tok_out.length != 0) in gserver_authenticate_connection() 6208 cbuf[0] = (tok_out.length >> 8) & 0xff; in gserver_authenticate_connection() 6209 cbuf[1] = tok_out.length & 0xff; in gserver_authenticate_connection() 6211 || (fwrite (tok_out.value, 1, tok_out.length, stdout) in gserver_authenticate_connection() 6212 != tok_out.length)) in gserver_authenticate_connection()
|