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

Diff for /src/usr.bin/ssh/servconf.h between version 1.22.2.2 and 1.22.2.3

version 1.22.2.2, 2000/09/01 18:23:22 version 1.22.2.3, 2000/11/08 21:31:13
Line 1 
Line 1 
 /*  /*
  *  
  * servconf.h  
  *  
  * 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
  *                    All rights reserved   *                    All rights reserved
  *  
  * Created: Mon Aug 21 15:35:03 1995 ylo  
  *  
  * Definitions for server configuration data and for the functions reading it.   * Definitions for server configuration data and for the functions reading it.
  *   *
    * 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".
  */   */
   
 /* RCSID("$OpenBSD$"); */  /* RCSID("$OpenBSD$"); */
Line 80 
Line 78 
 #endif  #endif
         int     password_authentication;        /* If true, permit password          int     password_authentication;        /* If true, permit password
                                                  * authentication. */                                                   * authentication. */
           int     kbd_interactive_authentication; /* If true, permit */
 #ifdef SKEY  #ifdef SKEY
         int     skey_authentication;    /* If true, permit s/key          int     skey_authentication;    /* If true, permit s/key
                                          * authentication. */                                           * authentication. */
Line 87 
Line 86 
         int     permit_empty_passwd;    /* If false, do not permit empty          int     permit_empty_passwd;    /* If false, do not permit empty
                                          * passwords. */                                           * passwords. */
         int     use_login;      /* If true, login(1) is used */          int     use_login;      /* If true, login(1) is used */
           int     allow_tcp_forwarding;
         unsigned int num_allow_users;          unsigned int num_allow_users;
         char   *allow_users[MAX_ALLOW_USERS];          char   *allow_users[MAX_ALLOW_USERS];
         unsigned int num_deny_users;          unsigned int num_deny_users;

Legend:
Removed from v.1.22.2.2  
changed lines
  Added in v.1.22.2.3