[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.3.2.7 and 1.4

version 1.3.2.7, 2002/03/08 17:04:43 version 1.4, 2001/01/18 17:00:00
Line 1 
Line 1 
 /*      $OpenBSD$       */  
   
 /*  /*
  * Copyright (c) 2000, 2001 Markus Friedl.  All rights reserved.   * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  *   *
  * Redistribution and use in source and binary forms, with or without   * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions   * modification, are permitted provided that the following conditions
Line 26 
Line 24 
 #ifndef SESSION_H  #ifndef SESSION_H
 #define SESSION_H  #define SESSION_H
   
 void     do_authenticated(Authctxt *);  /* SSH1 */
   void    do_authenticated(struct passwd * pw);
   
 int      session_open(Authctxt*, int);  /* SSH2 */
 int      session_input_channel_req(Channel *, const char *);  void    do_authenticated2(Authctxt *ac);
 void     session_close_by_pid(pid_t, int);  int     session_open(int id);
 void     session_close_by_channel(int, void *);  void    session_input_channel_req(int id, void *arg);
 void     session_destroy_all(void);  void    session_close_by_pid(pid_t pid, int status);
   void    session_close_by_channel(int id, void *arg);
   
 #endif  #endif

Legend:
Removed from v.1.3.2.7  
changed lines
  Added in v.1.4