=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/ssh.h,v retrieving revision 1.62 retrieving revision 1.62.2.3 diff -u -r1.62 -r1.62.2.3 --- src/usr.bin/ssh/ssh.h 2001/01/23 10:45:10 1.62 +++ src/usr.bin/ssh/ssh.h 2002/06/02 22:56:11 1.62.2.3 @@ -1,3 +1,5 @@ +/* $OpenBSD: ssh.h,v 1.62.2.3 2002/06/02 22:56:11 miod Exp $ */ + /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -10,8 +12,6 @@ * called by a name other than "ssh" or "Secure Shell". */ -/* RCSID("$OpenBSD: ssh.h,v 1.62 2001/01/23 10:45:10 markus Exp $"); */ - #ifndef SSH_H #define SSH_H @@ -81,5 +81,18 @@ /* Name of Kerberos service for SSH to use. */ #define KRB4_SERVICE_NAME "rcmd" + +/* Used to identify ``EscapeChar none'' */ +#define SSH_ESCAPECHAR_NONE -2 + +/* + * unprivileged user when UsePrivilegeSeparation=yes; + * sshd will change its privileges to this user and its + * primary group. + */ +#define SSH_PRIVSEP_USER "sshd" + +/* Minimum modulus size (n) for RSA keys. */ +#define SSH_RSA_MINIMUM_MODULUS_SIZE 768 #endif /* SSH_H */