Lines Matching defs:methods
63 /* methods */
305 "no authentication methods enabled");
350 char *methods;
406 methods = authmethods_get(authctxt);
407 debug3_f("failure partial=%d next methods=\"%s\"",
408 partial, methods);
410 (r = sshpkt_put_cstring(ssh, methods)) != 0 ||
415 free(methods);
421 * methods list. Returns 1 if allowed, or no methods lists configured.
511 * any methods lists that include disabled methods. Note that this might
531 debug3_f("checking methods");
537 logit("Authentication methods list \"%s\" contains "
542 debug("authentication methods list %d: %s",
549 "disabled methods");
556 list_starts_with(const char *methods, const char *method,
563 if (strncmp(methods, method, l) != 0)
565 p = methods + l;
583 * Remove method from the start of a comma-separated list of methods.
584 * Returns 0 if the list of methods did not start with that method or 1
588 remove_method(char **methods, const char *method, const char *submethod)
590 char *omethods = *methods, *p;
602 *methods = xstrdup(p);
619 debug3_f("updating methods list after \"%s\"", method);
626 debug2("authentication methods list %d complete", i);
629 debug3("authentication methods list %d remaining: \"%s\"",