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

version 1.11.2.17, 2011/09/19 23:30:50 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 TTY * ioFreePTY() Release PTY and TTY device
  * @ptyfd = master fd, pty (==-1 skip closing pty)
  * @ttyname = tty filename   * @ttyname = tty filename
  * return: none   * return: none
  */   */
inline void ioFreeTTY(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
Line 808  inline int ioSetRAWMode(int fd, struct termios *otio); Line 813  inline int ioSetRAWMode(int fd, struct termios *otio);
  * return: -1 error or 0 ok   * return: -1 error or 0 ok
  */   */
 inline int ioRestoreMode(int fd, struct termios tio);  inline int ioRestoreMode(int fd, struct termios tio);
   /*
    * ioForkPTY() Fork new process with session leader and new TTY
    * @ptyfd = master fd, pty
    * @name = tty device name if not null
    * @namesiz = name length, must be above 63 bytes.
    * @term = termios for terminal
    * @winz = winsize for terminal
    * @otio = old termios structure for restore
    * return: -1 error, 0 child process or >0 parent: pid of child
    */
   pid_t ioForkPTY(int *ptyfd, char * __restrict name, int namesiz, struct termios * __restrict term, 
                   struct winsize * __restrict winz, struct termios * __restrict otio);
   
   
 #endif  #endif

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


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