summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/auth-options.h
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2000-06-18 04:05:03 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2000-06-18 04:05:03 +0000
commitdc325368e83d5ead4a841fb98e2875c0538f5116 (patch)
tree03e410e888bbcdc3c607438c0534fd13bc4a2215 /usr.bin/ssh/auth-options.h
parentf0692cef8da2efb70ad8ab2eb85694990001dee1 (diff)
split auth-rsa option parsing into auth-options
add options support to authorized_keys2
Diffstat (limited to 'usr.bin/ssh/auth-options.h')
-rw-r--r--usr.bin/ssh/auth-options.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/usr.bin/ssh/auth-options.h b/usr.bin/ssh/auth-options.h
new file mode 100644
index 00000000000..1ecdb9df4e1
--- /dev/null
+++ b/usr.bin/ssh/auth-options.h
@@ -0,0 +1,13 @@
+#ifndef AUTH_OPTIONS_H
+#define AUTH_OPTIONS_H
+/* Flags that may be set in authorized_keys options. */
+extern int no_port_forwarding_flag;
+extern int no_agent_forwarding_flag;
+extern int no_x11_forwarding_flag;
+extern int no_pty_flag;
+extern char *forced_command;
+extern struct envstring *custom_environment;
+
+/* return 1 if access is granted, 0 if not. side effect: sets key option flags */
+int auth_parse_options(struct passwd *pw, char *options, unsigned long linenum);
+#endif