2015-01-14 13:30:34 +03:00
|
|
|
/* $OpenBSD: auth-options.h,v 1.21 2015/01/14 10:30:34 markus Exp $ */
|
2002-03-05 04:53:02 +03:00
|
|
|
|
2000-09-16 06:29:08 +04: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 04:39:34 +03:00
|
|
|
|
2000-06-18 08:50:44 +04:00
|
|
|
#ifndef AUTH_OPTIONS_H
|
|
|
|
#define AUTH_OPTIONS_H
|
2001-01-22 08:34:40 +03:00
|
|
|
|
|
|
|
/* Linked list of custom environment strings */
|
|
|
|
struct envstring {
|
|
|
|
struct envstring *next;
|
|
|
|
char *s;
|
|
|
|
};
|
|
|
|
|
2000-06-18 08:50:44 +04: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;
|
2008-03-27 03:03:05 +03:00
|
|
|
extern int no_user_rc;
|
2000-06-18 08:50:44 +04:00
|
|
|
extern char *forced_command;
|
|
|
|
extern struct envstring *custom_environment;
|
2005-12-13 11:29:02 +03:00
|
|
|
extern int forced_tun_device;
|
2010-02-26 23:55:05 +03:00
|
|
|
extern int key_is_cert_authority;
|
2010-05-10 05:58:03 +04:00
|
|
|
extern char *authorized_principals;
|
2000-06-18 08:50:44 +04:00
|
|
|
|
2001-07-04 08:46:56 +04:00
|
|
|
int auth_parse_options(struct passwd *, char *, char *, u_long);
|
2000-10-14 09:23:11 +04:00
|
|
|
void auth_clear_options(void);
|
2015-01-14 13:30:34 +03:00
|
|
|
int auth_cert_options(struct sshkey *, struct passwd *);
|
2000-10-14 09:23:11 +04:00
|
|
|
|
2000-06-18 08:50:44 +04:00
|
|
|
#endif
|