Diff for /libaitio/inc/aitio.h between versions 1.11.2.19 and 1.11.2.21

version 1.11.2.19, 2011/09/22 22:25:12 version 1.11.2.21, 2011/09/25 23:03:46
Line 47  SUCH DAMAGE. Line 47  SUCH DAMAGE.
 #define __AITIO_H  #define __AITIO_H
   
   
   #define COMPAT_43TTY
   
 #include <assert.h>  #include <assert.h>
 #include <openssl/evp.h>  #include <openssl/evp.h>
   #include <sys/tty.h>
   #include <sys/ioctl_compat.h>
   
   
 #define VACUUM_LEFT     1  #define VACUUM_LEFT     1
Line 764  int io_Blowfish(unsigned char *pInput, int inLen, unsi Line 768  int io_Blowfish(unsigned char *pInput, int inLen, unsi
 inline int ioAllocPTY(int *ptyfd, int *ttyfd, char * __restrict name, int namesiz,   inline int ioAllocPTY(int *ptyfd, int *ttyfd, char * __restrict name, int namesiz, 
                 struct termios * __restrict term, struct winsize * __restrict winz);                  struct termios * __restrict term, struct winsize * __restrict winz);
 /*  /*
 * ioFreeTTY() Release PTY and TTY device * ioFreePTY() Release PTY and TTY device
 * @ptyfd = master fd, pty * @ptyfd = master fd, pty (==-1 skip closing pty)
  * @ttyname = tty filename   * @ttyname = tty filename
  * return: none   * return: none
  */   */
inline void ioFreeTTY(int ptyfd, const char *ttyname);inline void ioFreePTY(int ptyfd, const char *ttyname);
 /*  /*
  * ioChgWinPTY() Change window size of PTY   * ioChgWinPTY() Change window size of PTY
  * @ptyfd = master fd, pty   * @ptyfd = master fd, pty

Removed from v.1.11.2.19  
changed lines
  Added in v.1.11.2.21


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>