summaryrefslogtreecommitdiff
path: root/auth-options.h
diff options
context:
space:
mode:
Diffstat (limited to 'auth-options.h')
-rw-r--r--auth-options.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/auth-options.h b/auth-options.h
new file mode 100644
index 000000000..1ecdb9df4
--- /dev/null
+++ b/auth-options.h
@@ -0,0 +1,13 @@
1#ifndef AUTH_OPTIONS_H
2#define AUTH_OPTIONS_H
3/* Flags that may be set in authorized_keys options. */
4extern int no_port_forwarding_flag;
5extern int no_agent_forwarding_flag;
6extern int no_x11_forwarding_flag;
7extern int no_pty_flag;
8extern char *forced_command;
9extern struct envstring *custom_environment;
10
11/* return 1 if access is granted, 0 if not. side effect: sets key option flags */
12int auth_parse_options(struct passwd *pw, char *options, unsigned long linenum);
13#endif