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

Diff for /src/usr.bin/ssh/auth.h between version 1.26 and 1.27

version 1.26, 2001/12/27 19:54:53 version 1.27, 2002/02/16 21:27:53
Line 79 
Line 79 
 struct KbdintDevice  struct KbdintDevice
 {  {
         const char *name;          const char *name;
         void*   (*init_ctx)     __P((Authctxt*));          void*   (*init_ctx)(Authctxt*);
         int     (*query)        __P((void *ctx, char **name, char **infotxt,          int     (*query)        __P((void *ctx, char **name, char **infotxt,
                                 u_int *numprompts, char ***prompts,                                  u_int *numprompts, char ***prompts,
                                 u_int **echo_on));                                  u_int **echo_on));
         int     (*respond)      __P((void *ctx, u_int numresp, char **responses));          int     (*respond)(void *ctx, u_int numresp, char **responses);
         void    (*free_ctx)     __P((void *ctx));          void    (*free_ctx)(void *ctx);
 };  };
   
 int     auth_rhosts(struct passwd *, const char *);  int     auth_rhosts(struct passwd *, const char *);

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27