[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.12 and 1.13

version 1.12, 1999/10/16 19:23:35 version 1.13, 1999/10/16 20:47:14
Line 45 
Line 45 
   
 /* Minor protocol version.  Different version indicates minor incompatibility  /* Minor protocol version.  Different version indicates minor incompatibility
    that does not prevent interoperation. */     that does not prevent interoperation. */
 #define PROTOCOL_MINOR          3  #define PROTOCOL_MINOR          5
   
 /* Name for the service.  The port named by this service overrides the default  /* Name for the service.  The port named by this service overrides the default
    port if present. */     port if present. */
Line 118 
Line 118 
   
 /* Name of the environment variable containing the pathname of the  /* Name of the environment variable containing the pathname of the
    authentication socket. */     authentication socket. */
 #define SSH_AUTHSOCKET_ENV_NAME "SSH_AUTH_SOCKET"  #define SSH_AUTHSOCKET_ENV_NAME "SSH_AUTH_SOCK"
   
 /* Force host key length and server key length to differ by at least this  /* Force host key length and server key length to differ by at least this
    many bits.  This is to make double encryption with rsaref work. */     many bits.  This is to make double encryption with rsaref work. */
Line 140 
Line 140 
                                 /* 5 is TIS */                                  /* 5 is TIS */
 #define SSH_AUTH_KERBEROS       6  #define SSH_AUTH_KERBEROS       6
 #define SSH_PASS_KERBEROS_TGT   7  #define SSH_PASS_KERBEROS_TGT   7
                                   /* 8 to 15 are reserved */
 #define SSH_PASS_AFS_TOKEN      21  #define SSH_PASS_AFS_TOKEN      21
   
 /* Protocol flags.  These are bit masks. */  /* Protocol flags.  These are bit masks. */
Line 189 
Line 190 
 #define SSH_CMSG_AUTH_RHOSTS_RSA                35      /* user,mod (s,mpi) */  #define SSH_CMSG_AUTH_RHOSTS_RSA                35      /* user,mod (s,mpi) */
 #define SSH_MSG_DEBUG                           36      /* string */  #define SSH_MSG_DEBUG                           36      /* string */
 #define SSH_CMSG_REQUEST_COMPRESSION            37      /* level 1-9 (int) */  #define SSH_CMSG_REQUEST_COMPRESSION            37      /* level 1-9 (int) */
   #define SSH_CMSG_MAX_PACKET_SIZE                38      /* size 4k-1024k (int) */
   #define SSH_CMSG_AUTH_TIS                       39      /* this is proto-1.5, but we ignore TIS */
   #define SSH_SMSG_AUTH_TIS_CHALLENGE             40
   #define SSH_CMSG_AUTH_TIS_RESPONSE              41
   
 #define SSH_CMSG_AUTH_KERBEROS                  42      /* (KTEXT) */  #define SSH_CMSG_AUTH_KERBEROS                  42      /* (KTEXT) */
 #define SSH_SMSG_AUTH_KERBEROS_RESPONSE         43      /* (KTEXT) */  #define SSH_SMSG_AUTH_KERBEROS_RESPONSE         43      /* (KTEXT) */

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13