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