Lines Matching refs:request
156 process_options(char *options, struct request_info *request) in process_options() argument
209 value = chop_string(percent_x(bf, sizeof(bf), value, request)); in process_options()
212 (*(op->func)) (value, request); in process_options()
221 allow_option(char *value, struct request_info *request) in allow_option() argument
231 deny_option(char *value, struct request_info *request) in deny_option() argument
239 banners_option(char *value, struct request_info *request) in banners_option() argument
248 (void)snprintf(path, sizeof path, "%s/%s", value, eval_daemon(request)); in banners_option()
251 write(request->fd, "", 1); in banners_option()
256 percent_x(obuf, sizeof(obuf), ibuf, request); in banners_option()
257 write(request->fd, obuf, strlen(obuf)); in banners_option()
270 group_option(char *value, struct request_info *request) in group_option() argument
288 user_option(char *value, struct request_info *request) in user_option() argument
295 group_option(group, request); in user_option()
309 umask_option(char *value, struct request_info *request) in umask_option() argument
324 spawn_option(char *value, struct request_info *request) in spawn_option() argument
335 linger_option(char *value, struct request_info *request) in linger_option() argument
345 if (setsockopt(request->fd, SOL_SOCKET, SO_LINGER, (char *) &linger, in linger_option()
356 keepalive_option(char *value, struct request_info *request) in keepalive_option() argument
360 if (dry_run == 0 && setsockopt(request->fd, SOL_SOCKET, SO_KEEPALIVE, in keepalive_option()
370 nice_option(char *value, struct request_info *request) in nice_option() argument
384 twist_option(char *value, struct request_info *request) in twist_option() argument
392 syslog(deny_severity, "twist %s to %s", eval_client(request), value); in twist_option()
398 if (maybe_dup2(request->fd, 0) != 0 || in twist_option()
399 maybe_dup2(request->fd, 1) != 1 || in twist_option()
400 maybe_dup2(request->fd, 2) != 2) { in twist_option()
403 if (request->fd > 2) in twist_option()
404 close(request->fd); in twist_option()
410 clean_exit(request); in twist_option()
417 rfc931_option(char *value, struct request_info *request) in rfc931_option() argument
427 (void) eval_user(request); in rfc931_option()
435 setenv_option(char *value, struct request_info *request) in setenv_option() argument
564 severity_option(char *value, struct request_info *request) in severity_option() argument