1 /* $OpenBSD: auth-options.h,v 1.12 2002/07/21 18:34:43 stevesk Exp $ */
3 #ifndef _AUTH_OPTIONS_H
4 #define _AUTH_OPTIONS_H
6 #pragma ident "%Z%%M% %I% %E% SMI"
14 * Author: Tatu Ylonen <ylo@cs.hut.fi>
15 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
18 * As far as I am concerned, the code I have written for this software
19 * can be used freely for any purpose. Any derived versions of this
20 * software must be clearly marked as such, and if the derived work is
21 * incompatible with the protocol description in the RFC file, it must be
22 * called by a name other than "ssh" or "Secure Shell".
25 /* Linked list of custom environment strings */
27 struct envstring
*next
;
31 /* Flags that may be set in authorized_keys options. */
32 extern int no_port_forwarding_flag
;
33 extern int no_agent_forwarding_flag
;
34 extern int no_x11_forwarding_flag
;
35 extern int no_pty_flag
;
36 extern char *forced_command
;
37 extern struct envstring
*custom_environment
;
39 int auth_parse_options(struct passwd
*, char *, char *, u_long
);
40 void auth_clear_options(void);
46 #endif /* _AUTH_OPTIONS_H */