[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.6.1 and 1.6

version 1.5.6.1, 2006/10/06 03:19:33 version 1.6, 2006/02/07 01:42:00
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
   #define SSHPTY_H
   
 #include <termios.h>  #include <termios.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 *, size_t);  int      pty_allocate(int *, int *, char *, int);
 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, u_int, u_int, u_int, u_int);  void     pty_change_window_size(int, int, int, int, int);
 void     pty_setowner(struct passwd *, const char *);  void     pty_setowner(struct passwd *, const char *);
   
   #endif                          /* SSHPTY_H */

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