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

Diff for /src/usr.bin/ssh/authfd.h between version 1.7.2.1 and 1.7.2.2

version 1.7.2.1, 2000/09/01 18:23:17 version 1.7.2.2, 2000/11/08 21:30:26
Line 1 
Line 1 
 /*  /*
  *  
  * authfd.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: Wed Mar 29 01:17:41 1995 ylo  
  *  
  * Functions to interface with the SSH_AUTHENTICATION_FD socket.   * Functions to interface with the SSH_AUTHENTICATION_FD socket.
  *   *
    * 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 31 
Line 29 
 #define SSH_AGENTC_REMOVE_RSA_IDENTITY          8  #define SSH_AGENTC_REMOVE_RSA_IDENTITY          8
 #define SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES    9  #define SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES    9
   
   /* private OpenSSH extensions for SSH2 */
 #define SSH2_AGENTC_REQUEST_IDENTITIES          11  #define SSH2_AGENTC_REQUEST_IDENTITIES          11
 #define SSH2_AGENT_IDENTITIES_ANSWER            12  #define SSH2_AGENT_IDENTITIES_ANSWER            12
 #define SSH2_AGENTC_SIGN_REQUEST                13  #define SSH2_AGENTC_SIGN_REQUEST                13
Line 38 
Line 37 
 #define SSH2_AGENTC_ADD_IDENTITY                17  #define SSH2_AGENTC_ADD_IDENTITY                17
 #define SSH2_AGENTC_REMOVE_IDENTITY             18  #define SSH2_AGENTC_REMOVE_IDENTITY             18
 #define SSH2_AGENTC_REMOVE_ALL_IDENTITIES       19  #define SSH2_AGENTC_REMOVE_ALL_IDENTITIES       19
   
   /* additional error code for ssh.com's ssh-agent2 */
   #define SSH_COM_AGENT2_FAILURE                   102
   
   #define SSH_AGENT_OLD_SIGNATURE                 0x01
   
   
 typedef struct {  typedef struct {
         int     fd;          int     fd;

Legend:
Removed from v.1.7.2.1  
changed lines
  Added in v.1.7.2.2