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

Diff for /src/usr.bin/ssh/session.h between version 1.20.2.1 and 1.20.2.2

version 1.20.2.1, 2004/02/28 03:51:34 version 1.20.2.2, 2004/08/19 22:37:32
Line 39 
Line 39 
         int     ptyfd, ttyfd, ptymaster;          int     ptyfd, ttyfd, ptymaster;
         u_int   row, col, xpixel, ypixel;          u_int   row, col, xpixel, ypixel;
         char    tty[TTYSZ];          char    tty[TTYSZ];
         /* last login */  
         char    hostname[MAXHOSTNAMELEN];  
         time_t  last_login_time;  
         /* X11 */          /* X11 */
         u_int   display_number;          u_int   display_number;
         char    *display;          char    *display;
Line 53 
Line 50 
         /* proto 2 */          /* proto 2 */
         int     chanid;          int     chanid;
         int     is_subsystem;          int     is_subsystem;
           int     num_env;
           struct {
                   char    *name;
                   char    *val;
           }       *env;
 };  };
   
 void     do_authenticated(Authctxt *);  void     do_authenticated(Authctxt *);

Legend:
Removed from v.1.20.2.1  
changed lines
  Added in v.1.20.2.2