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

Diff for /src/usr.bin/ssh/sshpty.h between version 1.5 and 1.5.6.1

version 1.5, 2004/05/08 00:01:37 version 1.5.6.1, 2006/10/06 03:19:33
Line 1 
Line 1 
 /*      $OpenBSD$       */  /* $OpenBSD$ */
   
 /*  /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>   * Author: Tatu Ylonen <ylo@cs.hut.fi>
Line 14 
Line 14 
  * called by a name other than "ssh" or "Secure Shell".   * called by a name other than "ssh" or "Secure Shell".
  */   */
   
 #ifndef SSHPTY_H  #include <termios.h>
 #define SSHPTY_H  
   
 struct termios get_saved_tio(void);  struct termios get_saved_tio(void);
 void     leave_raw_mode(void);  void     leave_raw_mode(void);
 void     enter_raw_mode(void);  void     enter_raw_mode(void);
   
 int      pty_allocate(int *, int *, char *, int);  int      pty_allocate(int *, int *, char *, size_t);
 void     pty_release(const char *);  void     pty_release(const char *);
 void     pty_make_controlling_tty(int *, const char *);  void     pty_make_controlling_tty(int *, const char *);
 void     pty_change_window_size(int, int, int, int, int);  void     pty_change_window_size(int, u_int, u_int, u_int, u_int);
 void     pty_setowner(struct passwd *, const char *);  void     pty_setowner(struct passwd *, const char *);
   
 #endif                          /* SSHPTY_H */  

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.5.6.1