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

Diff for /src/usr.bin/tmux/tmux.h between version 1.939 and 1.940

version 1.939, 2019/12/12 12:49:36 version 1.940, 2019/12/16 15:48:50
Line 507 
Line 507 
 struct msg_read_open {  struct msg_read_open {
         int     stream;          int     stream;
         int     fd;          int     fd;
         char    path[PATH_MAX];  }; /* followed by path */
 };  
   
 struct msg_read_data {  struct msg_read_data {
         int     stream;          int     stream;
         size_t  size;  
         char    data[BUFSIZ];  
 };  };
   
 struct msg_read_done {  struct msg_read_done {
Line 524 
Line 521 
 struct msg_write_open {  struct msg_write_open {
         int     stream;          int     stream;
         int     fd;          int     fd;
         char    path[PATH_MAX];  
         int     flags;          int     flags;
 };  }; /* followed by path */
   
 struct msg_write_data {  struct msg_write_data {
         int     stream;          int     stream;
         size_t  size;  }; /* followed by data */
         char    data[BUFSIZ];  
 };  
   
 struct msg_write_ready {  struct msg_write_ready {
         int     stream;          int     stream;

Legend:
Removed from v.1.939  
changed lines
  Added in v.1.940