Difference for socket/request.c from version 1.37 to 1.38


version 1.37 version 1.38
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_init_c =   * static char *rcsid_init_c =
  *    "$Id: request.c,v 1.37 2002/05/20 03:11:50 mwedel Exp $";   *    "$Id: request.c,v 1.38 2002/05/31 04:18:39 mwedel Exp $";
  */   */
   
 /*  /*
Line 179
 
Line 179
      strcat(cmdback, tmpbuf);       strcat(cmdback, tmpbuf);
      /* if the client is using faceset, it knows about image2 command */       /* if the client is using faceset, it knows about image2 command */
      ns->image2=1;       ns->image2=1;
    } else if (!strcmp(cmd,"itemcmd")) {
        /* Version of the item protocol command to use.  Currently,
         * only supported versions are 1 and 2.  Using a numeric
         * value will make it very easy to extend this in the future.
         */
        char tmpbuf[20];
        int q = atoi(param);
        if (q<1 || q>2) {
    sprintf(tmpbuf,"%d", ns->itemcmd);
        } else  {
    ns->itemcmd = q;
        }
         } else if (!strcmp(cmd,"mapsize")) {          } else if (!strcmp(cmd,"mapsize")) {
      int x, y=0;       int x, y=0;
      char tmpbuf[MAX_BUF], *cp;       char tmpbuf[MAX_BUF], *cp;
Line 463
 
Line 475
  * Add later stuff here for other clients    * Add later stuff here for other clients
  */   */
   
  if(!strcmp(" CF DX CLIENT", cp)) /* these are old dxclients */   /* these are old dxclients */
    /* Version 1024 added support for singular + plural name values -
    * requiing this minimal value reduces complexity of that code, and it
    * has been around for a long time.
    */
    if(!strcmp(" CF DX CLIENT", cp) || ns->sc_version < 1024 )
  {   {
      sprintf(version_warning,"drawinfo %d %s", NDI_RED, "**** VERSION WARNING ****\n**** CLIENT IS TO OLD!! UPDATE THE CLIENT!! ****");       sprintf(version_warning,"drawinfo %d %s", NDI_RED, "**** VERSION WARNING ****\n**** CLIENT IS TO OLD!! UPDATE THE CLIENT!! ****");
      Write_String_To_Socket(ns, version_warning, strlen(version_warning));       Write_String_To_Socket(ns, version_warning, strlen(version_warning));
  }   }
   
     }      }
 }  }
   


Legend:
line(s) removed in v.1.37 
line(s) changed
 line(s) added in v.1.38

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