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

Diff for /src/usr.bin/tip/Attic/tip.h between version 1.30 and 1.31

version 1.30, 2007/06/25 15:57:28 version 1.31, 2007/09/11 18:20:21
Line 247 
Line 247 
 pid_t   tipout_pid;             /* pid of tipout */  pid_t   tipout_pid;             /* pid of tipout */
 uid_t   uid, euid;              /* real and effective user id's */  uid_t   uid, euid;              /* real and effective user id's */
 gid_t   gid, egid;              /* real and effective group id's */  gid_t   gid, egid;              /* real and effective group id's */
 int     stop;                   /* stop transfer session flag */  volatile sig_atomic_t stop;     /* stop transfer session flag */
 int     quit;                   /* same; but on other end */  volatile sig_atomic_t quit;     /* same; but on other end */
 int     intflag;                /* recognized interrupt */  volatile sig_atomic_t stoprompt;/* for interrupting a prompt session */
 int     stoprompt;              /* for interrupting a prompt session */  volatile sig_atomic_t timedout; /* ~> transfer timedout */
 int     timedout;               /* ~> transfer timedout */  
 int     cumode;                 /* simulating the "cu" program */  int     cumode;                 /* simulating the "cu" program */
 int     bits8;                  /* terminal is 8-bit mode */  int     bits8;                  /* terminal is 8-bit mode */
 #define STRIP_PAR       (bits8 ? 0377 : 0177)  #define STRIP_PAR       (bits8 ? 0377 : 0177)

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31