2006-08-05 04:39:39 +02:00
|
|
|
/* $OpenBSD: auth-options.h,v 1.16 2006/08/03 03:34:41 deraadt Exp $ */
|
2002-03-05 02:53:02 +01:00
|
|
|
|
2000-09-16 04:29:08 +02:00
|
|
|
/*
|
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
*
|
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
|
|
|
*/
|
2000-11-06 02:39:34 +01:00
|
|
|
|
2000-06-18 06:50:44 +02:00
|
|
|
#ifndef AUTH_OPTIONS_H
|
|
|
|
#define AUTH_OPTIONS_H
|
2001-01-22 06:34:40 +01:00
|
|
|
|
|
|
|
/* Linked list of custom environment strings */
|
|
|
|
struct envstring {
|
|
|
|
struct envstring *next;
|
|
|
|
char *s;
|
|
|
|
};
|
|
|
|
|
2000-06-18 06:50:44 +02:00
|
|
|
/* 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;
|
2005-12-13 09:29:02 +01:00
|
|
|
extern int forced_tun_device;
|
2000-06-18 06:50:44 +02:00
|
|
|
|
2001-07-04 06:46:56 +02:00
|
|
|
int auth_parse_options(struct passwd *, char *, char *, u_long);
|
2000-10-14 07:23:11 +02:00
|
|
|
void auth_clear_options(void);
|
|
|
|
|
2000-06-18 06:50:44 +02:00
|
|
|
#endif
|