Difference for socket/lowlevel.c from version 1.3 to 1.4


version 1.3 version 1.4
Line 1
 
Line 1
   
 /*  /*
  * static char *rcsid_sockets_c =   * static char *rcsid_sockets_c =
  *    "$Id: lowlevel.c,v 1.3 2000/05/21 21:41:46 jec Exp $";   *    "$Id: lowlevel.c,v 1.4 2000/11/08 07:19:37 cvs Exp $";
  */   */
   
 /*  /*
Line 340
 
Line 340
     if (ns->status == Ns_Dead || !msg)      if (ns->status == Ns_Dead || !msg)
  return;   return;
   
       if (msg->len >= MAXSOCKBUF) {
    LOG(llevError,"Trying to send a buffer beyond properly size, len =%d\n",
        msg->len);
    /* Almost certainly we've overflowed a buffer, so quite now to make
    * it easier to debug.
    */
    abort();
       }
     sbuf[0] = ((uint32)(msg->len) >> 8) & 0xFF;      sbuf[0] = ((uint32)(msg->len) >> 8) & 0xFF;
     sbuf[1] = ((uint32)(msg->len)) & 0xFF;      sbuf[1] = ((uint32)(msg->len)) & 0xFF;
     if (ns->status != Ns_Old)       if (ns->status != Ns_Old)


Legend:
line(s) removed in v.1.3 
line(s) changed
 line(s) added in v.1.4

File made using version 1.98 of cvs2html by leaf at 2011-07-21 19:36