Lines Matching defs:client_auth
230 AuthPtr client_auth;
243 client_auth = (AuthPtr) ALLOCATE_LOCAL(prefix->num_auths * sizeof(AuthRec));
244 if (!client_auth) {
256 DEALLOCATE_LOCAL(client_auth);
260 client_auth[i].namelen = (((unsigned char *)ad)[0] << 8) +
263 client_auth[i].datalen = (((unsigned char *)ad)[0] << 8) +
266 client_auth[i].name = (char *) ad;
267 ad += client_auth[i].namelen;
268 client_auth[i].data = (char *) ad;
269 ad += client_auth[i].datalen;
277 DEALLOCATE_LOCAL(client_auth);
289 ret = CheckClientAuthorization(client, client_auth,
297 DEALLOCATE_LOCAL(client_auth);
301 (char *) FSalloc(client_auth[auth_index - 1].namelen + 1);
303 (char *) FSalloc(client_auth[auth_index - 1].datalen + 1);
309 DEALLOCATE_LOCAL(client_auth);
312 memcpy(authp->authname, client_auth[auth_index - 1].name,
313 client_auth[auth_index - 1].namelen);
314 memcpy(authp->authdata, client_auth[auth_index - 1].data,
315 client_auth[auth_index - 1].datalen);
325 DEALLOCATE_LOCAL(client_auth);
333 DEALLOCATE_LOCAL(client_auth);