[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.25 and 1.25.2.1

version 1.25, 2005/07/17 06:49:04 version 1.25.2.1, 2006/10/06 03:19:33
Line 1 
Line 1 
 /*      $OpenBSD$       */  /* $OpenBSD$ */
   
 /*  /*
  * Copyright (c) 2000, 2001 Markus Friedl.  All rights reserved.   * Copyright (c) 2000, 2001 Markus Friedl.  All rights reserved.
Line 34 
Line 34 
         struct passwd *pw;          struct passwd *pw;
         Authctxt *authctxt;          Authctxt *authctxt;
         pid_t   pid;          pid_t   pid;
   
         /* tty */          /* tty */
         char    *term;          char    *term;
         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];
   
         /* X11 */          /* X11 */
         u_int   display_number;          u_int   display_number;
         char    *display;          char    *display;
Line 47 
Line 49 
         char    *auth_proto;          char    *auth_proto;
         char    *auth_data;          char    *auth_data;
         int     single_connection;          int     single_connection;
   
         /* proto 2 */          /* proto 2 */
         int     chanid;          int     chanid;
         int     *x11_chanids;          int     *x11_chanids;
Line 55 
Line 58 
         struct {          struct {
                 char    *name;                  char    *name;
                 char    *val;                  char    *val;
         }       *env;          } *env;
 };  };
   
 void     do_authenticated(Authctxt *);  void     do_authenticated(Authctxt *);

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.25.2.1