[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.4 and 1.3.2.5

version 1.3.2.4, 2001/05/07 21:09:34 version 1.3.2.5, 2001/09/27 00:15:42
Line 1 
Line 1 
 /*      $OpenBSD$       */  /*      $OpenBSD$       */
   
 /*  /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.   * Copyright (c) 2000, 2001 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 26 
 #ifndef SESSION_H  #ifndef SESSION_H
 #define SESSION_H  #define SESSION_H
   
 void    do_authenticated(Authctxt *ac);  void     do_authenticated(Authctxt *);
   
 int     session_open(int id);  int      session_open(Authctxt*, int);
 void    session_input_channel_req(int id, void *arg);  void     session_input_channel_req(int, void *);
 void    session_close_by_pid(pid_t pid, int status);  void     session_close_by_pid(pid_t, int);
 void    session_close_by_channel(int id, void *arg);  void     session_close_by_channel(int, void *);
   int      session_have_children(void);
   
 #endif  #endif

Legend:
Removed from v.1.3.2.4  
changed lines
  Added in v.1.3.2.5