[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.51 and 1.51.4.1

version 1.51, 2005/06/06 11:20:36 version 1.51.4.1, 2006/09/30 04:06:50
Line 1 
Line 1 
 /*      $OpenBSD$       */  /* $OpenBSD$ */
   
 /*  /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.   * Copyright (c) 2000 Markus Friedl.  All rights reserved.
Line 28 
Line 28 
 #ifndef AUTH_H  #ifndef AUTH_H
 #define AUTH_H  #define AUTH_H
   
 #include "key.h"  #include <signal.h>
 #include "hostfile.h"  
 #include <openssl/rsa.h>  #include <openssl/rsa.h>
   
 #ifdef HAVE_LOGIN_CAP  #ifdef HAVE_LOGIN_CAP
Line 47 
Line 47 
 typedef struct KbdintDevice KbdintDevice;  typedef struct KbdintDevice KbdintDevice;
   
 struct Authctxt {  struct Authctxt {
         int              success;          sig_atomic_t     success;
           int              authenticated; /* authenticated and alarms cancelled */
         int              postponed;     /* authentication needs another step */          int              postponed;     /* authentication needs another step */
         int              valid;         /* user exists and is allowed to login */          int              valid;         /* user exists and is allowed to login */
         int              attempt;          int              attempt;

Legend:
Removed from v.1.51  
changed lines
  Added in v.1.51.4.1