summaryrefslogtreecommitdiff
path: root/other/openssh-reverse/auth-options.h
diff options
context:
space:
mode:
authorSkyperTHC2026-03-03 06:28:55 +0000
committerSkyperTHC2026-03-03 06:28:55 +0000
commit5d3573ef7a109ee70416fe94db098fe6a769a798 (patch)
treedc2d5b294c9db8ab2db7433511f94e1c4bb8b698 /other/openssh-reverse/auth-options.h
parentc6c59dc73cc4586357f93ab38ecf459e98675cc5 (diff)
packetstorm sync
Diffstat (limited to 'other/openssh-reverse/auth-options.h')
-rw-r--r--other/openssh-reverse/auth-options.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/other/openssh-reverse/auth-options.h b/other/openssh-reverse/auth-options.h
new file mode 100644
index 0000000..1ecdb9d
--- /dev/null
+++ b/other/openssh-reverse/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