Home
last modified time | relevance | path

Searched refs:opt_flag (Results 1 – 4 of 4) sorted by relevance

/dragonfly/crypto/openssh/
H A Dauth-options.c339 if ((r = opt_flag("restrict", 0, &opts)) != -1) { in sshauthopt_parse()
346 } else if ((r = opt_flag("cert-authority", 0, &opts)) != -1) { in sshauthopt_parse()
348 } else if ((r = opt_flag("port-forwarding", 1, &opts)) != -1) { in sshauthopt_parse()
350 } else if ((r = opt_flag("agent-forwarding", 1, &opts)) != -1) { in sshauthopt_parse()
352 } else if ((r = opt_flag("x11-forwarding", 1, &opts)) != -1) { in sshauthopt_parse()
354 } else if ((r = opt_flag("touch-required", 1, &opts)) != -1) { in sshauthopt_parse()
356 } else if ((r = opt_flag("verify-required", 1, &opts)) != -1) { in sshauthopt_parse()
358 } else if ((r = opt_flag("pty", 1, &opts)) != -1) { in sshauthopt_parse()
360 } else if ((r = opt_flag("user-rc", 1, &opts)) != -1) { in sshauthopt_parse()
H A Dmisc.h200 int opt_flag(const char *opt, int allow_negate, const char **optsp);
H A Dsshsig.c639 if ((r = opt_flag("cert-authority", 0, &opts)) != -1) { in sshsigopt_parse()
H A Dmisc.c2495 opt_flag(const char *opt, int allow_negate, const char **optsp) in opt_flag() function