Difference for socket/init.c from version 1.32 to 1.33


version 1.32 version 1.33
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_init_c =   * static char *rcsid_init_c =
  *    "$Id: init.c,v 1.32 2003/12/14 16:28:47 ryo_saeba Exp $";   *    "$Id: init.c,v 1.33 2003/12/18 20:40:44 ryo_saeba Exp $";
  */   */
   
 /*  /*
Line 120
 
Line 120
     ns->itemcmd = 1; /* Default is version item1 command*/      ns->itemcmd = 1; /* Default is version item1 command*/
     ns->ext_mapinfos=0; /*extendedmapinfo datas*/      ns->ext_mapinfos=0; /*extendedmapinfo datas*/
     ns->EMI_smooth=0;       ns->EMI_smooth=0;
       ns->look_position = 0;
       ns->update_look = 0;
   
     /* we should really do some checking here - if total clients overflows      /* we should really do some checking here - if total clients overflows
      * we need to do something more intelligent, because client id's will start       * we need to do something more intelligent, because client id's will start
Line 127
 
Line 129
      * just open and close connections could get this total up.       * just open and close connections could get this total up.
      */       */
     ns->inbuf.len=0;      ns->inbuf.len=0;
     ns->inbuf.buf=malloc(MAXSOCKBUF);      ns->inbuf.buf=malloc( sizeof( unsigned char ) * MAXSOCKBUF );
     /* Basic initialization. Needed because we do a check in      /* Basic initialization. Needed because we do a check in
      * HandleClient for oldsocketmode without checking the       * HandleClient for oldsocketmode without checking the
      * length of data.       * length of data.
      */       */
     ns->inbuf.buf[0] = 0;      memset( ns->inbuf.buf, 0, sizeof( unsigned char ) * MAXSOCKBUF );
     memset(&ns->lastmap,0,sizeof(struct Map));      memset(&ns->lastmap,0,sizeof(struct Map));
     memset(&ns->faces_sent,0,sizeof(ns->faces_sent));      memset(&ns->faces_sent,0,sizeof(ns->faces_sent));
     memset(&ns->anims_sent,0,sizeof(ns->anims_sent));      memset(&ns->anims_sent,0,sizeof(ns->anims_sent));


Legend:
line(s) removed in v.1.32 
line(s) changed
 line(s) added in v.1.33

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