Lines Matching defs:t_args
342 const char *const *t_args;
353 t_args = t_strsplit_spaces(args, " ");
354 for(i = 0; t_args[i] != NULL; i++) {
356 if (strcmp(t_args[i], "-session") == 0 ||
357 strcmp(t_args[i], "session=yes") == 0)
359 else if (strcmp(t_args[i], "setcred=yes") == 0)
361 else if (strncmp(t_args[i], "cache_key=", 10) == 0) {
363 auth_cache_parse_key(pool, t_args[i] + 10);
364 } else if (strcmp(t_args[i], "blocking=yes") == 0) {
366 } else if (strcmp(t_args[i], "failure_show_msg=yes") == 0) {
368 } else if (strcmp(t_args[i], "*") == 0) {
371 } else if (strncmp(t_args[i], "max_requests=", 13) == 0) {
372 if (str_to_uint(t_args[i] + 13,
375 t_args[i] + 13);
377 } else if (t_args[i+1] == NULL) {
378 module->service_name = p_strdup(pool, t_args[i]);
380 i_fatal("pam: Unknown setting: %s", t_args[i]);