[BACK]Return to ssh.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/ssh.h between version 1.63 and 1.63.2.3

version 1.63, 2001/05/24 18:57:53 version 1.63.2.3, 2002/06/22 07:23:18
Line 1 
Line 1 
   /*      $OpenBSD$       */
   
 /*  /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>   * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland   * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
Line 10 
Line 12 
  * called by a name other than "ssh" or "Secure Shell".   * called by a name other than "ssh" or "Secure Shell".
  */   */
   
 /* RCSID("$OpenBSD$"); */  
   
 #ifndef SSH_H  #ifndef SSH_H
 #define SSH_H  #define SSH_H
   
Line 31 
Line 31 
 #define SSH_MAX_IDENTITY_FILES          100  #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.   * that prevents communication.
  *   *
  * Minor protocol version.  Different version indicates minor incompatibility   * Minor protocol version.  Different version indicates minor incompatibility
Line 84 
Line 84 
   
 /* Used to identify ``EscapeChar none'' */  /* Used to identify ``EscapeChar none'' */
 #define SSH_ESCAPECHAR_NONE             -2  #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                "nobody"
   
   /* Minimum modulus size (n) for RSA keys. */
   #define SSH_RSA_MINIMUM_MODULUS_SIZE    768
   
 #endif                          /* SSH_H */  #endif                          /* SSH_H */

Legend:
Removed from v.1.63  
changed lines
  Added in v.1.63.2.3