]> andersk Git - openssh.git/blobdiff - ssh.h
- markus@cvs.openbsd.org 2003/05/11 20:30:25
[openssh.git] / ssh.h
diff --git a/ssh.h b/ssh.h
index 383c7fe9b1c9214225718f62c951d0bbb5063d6f..0a6ad1317b96398744d08c2a7755d2c3d0eb3f00 100644 (file)
--- a/ssh.h
+++ b/ssh.h
@@ -1,3 +1,5 @@
+/*     $OpenBSD: ssh.h,v 1.71 2002/06/22 02:00:29 stevesk Exp $        */
+
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -10,8 +12,6 @@
  * called by a name other than "ssh" or "Secure Shell".
  */
 
-/* RCSID("$OpenBSD: ssh.h,v 1.63 2001/05/24 18:57:53 stevesk Exp $"); */
-
 #ifndef SSH_H
 #define SSH_H
 
@@ -41,7 +41,7 @@
 #define SSH_MAX_IDENTITY_FILES         100
 
 /*
- * Major protocol version.  Different version indicates major incompatiblity
+ * Major protocol version.  Different version indicates major incompatibility
  * that prevents communication.
  *
  * Minor protocol version.  Different version indicates minor incompatibility
  */
 #define SSH_SERVICE_NAME       "ssh"
 
-#if defined(USE_PAM) && !defined(SSHD_PAM_SERVICE)
-# define SSHD_PAM_SERVICE       __progname
-#endif
-
 /*
- * Name of the environment variable containing the pathname of the
- * authentication socket.
+ * Name of the environment variable containing the process ID of the
+ * authentication agent.
  */
 #define SSH_AGENTPID_ENV_NAME  "SSH_AGENT_PID"
 
 /* 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.
+ */
+#ifndef SSH_PRIVSEP_USER
+#define SSH_PRIVSEP_USER               "sshd"
+#endif
+
+/* Minimum modulus size (n) for RSA keys. */
+#define SSH_RSA_MINIMUM_MODULUS_SIZE   768
+
 #endif                         /* SSH_H */
This page took 0.027596 seconds and 4 git commands to generate.