[BACK]Return to server-msg.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/Attic/server-msg.c between version 1.18 and 1.19

version 1.18, 2009/09/23 06:05:02 version 1.19, 2009/09/23 06:12:58
Line 17 
Line 17 
  */   */
   
 #include <sys/types.h>  #include <sys/types.h>
   #include <sys/ioctl.h>
   
 #include <errno.h>  #include <errno.h>
 #include <stdlib.h>  #include <stdlib.h>
Line 28 
Line 29 
   
 void    server_msg_command(struct client *, struct msg_command_data *);  void    server_msg_command(struct client *, struct msg_command_data *);
 void    server_msg_identify(struct client *, struct msg_identify_data *, int);  void    server_msg_identify(struct client *, struct msg_identify_data *, int);
 void    server_msg_resize(struct client *, struct msg_resize_data *);  
   
 void printflike2 server_msg_command_error(struct cmd_ctx *, const char *, ...);  void printflike2 server_msg_command_error(struct cmd_ctx *, const char *, ...);
 void printflike2 server_msg_command_print(struct cmd_ctx *, const char *, ...);  void printflike2 server_msg_command_print(struct cmd_ctx *, const char *, ...);
Line 40 
Line 40 
         struct imsg              imsg;          struct imsg              imsg;
         struct msg_command_data  commanddata;          struct msg_command_data  commanddata;
         struct msg_identify_data identifydata;          struct msg_identify_data identifydata;
         struct msg_resize_data   resizedata;  
         struct msg_unlock_data   unlockdata;          struct msg_unlock_data   unlockdata;
         struct msg_environ_data  environdata;          struct msg_environ_data  environdata;
         ssize_t                  n, datalen;          ssize_t                  n, datalen;
Line 81 
Line 80 
                         server_msg_identify(c, &identifydata, imsg.fd);                          server_msg_identify(c, &identifydata, imsg.fd);
                         break;                          break;
                 case MSG_RESIZE:                  case MSG_RESIZE:
                         if (datalen != sizeof resizedata)                          if (datalen != 0)
                                 fatalx("bad MSG_RESIZE size");                                  fatalx("bad MSG_RESIZE size");
                         memcpy(&resizedata, imsg.data, sizeof resizedata);  
   
                         server_msg_resize(c, &resizedata);                          tty_resize(&c->tty);
                           recalculate_sizes();
                           server_redraw_client(c);
                         break;                          break;
                 case MSG_EXITING:                  case MSG_EXITING:
                         if (datalen != 0)                          if (datalen != 0)
Line 261 
Line 261 
         if (data->flags & IDENTIFY_HASDEFAULTS)          if (data->flags & IDENTIFY_HASDEFAULTS)
                 c->tty.term_flags |= TERM_HASDEFAULTS;                  c->tty.term_flags |= TERM_HASDEFAULTS;
   
         c->tty.sx = data->sx;          tty_resize(&c->tty);
         if (c->tty.sx == 0)  
                 c->tty.sx = 80;  
         c->tty.sy = data->sy;  
         if (c->tty.sy == 0)  
                 c->tty.sy = 24;  
   
         c->flags |= CLIENT_TERMINAL;          c->flags |= CLIENT_TERMINAL;
 }  
   
 void  
 server_msg_resize(struct client *c, struct msg_resize_data *data)  
 {  
         c->tty.sx = data->sx;  
         if (c->tty.sx == 0)  
                 c->tty.sx = 80;  
         c->tty.sy = data->sy;  
         if (c->tty.sy == 0)  
                 c->tty.sy = 24;  
   
         c->tty.cx = UINT_MAX;  
         c->tty.cy = UINT_MAX;  
         c->tty.rupper = UINT_MAX;  
         c->tty.rlower = UINT_MAX;  
   
         recalculate_sizes();  
   
         /* Always redraw this client. */  
         server_redraw_client(c);  
 }  }

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19