Difference for socket/request.c from version 1.68 to 1.69


version 1.68 version 1.69
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_init_c =   * static char *rcsid_init_c =
  *    "$Id: request.c,v 1.68 2005/03/28 07:20:10 mwedel Exp $";   *    "$Id: request.c,v 1.69 2005/05/06 21:10:27 tchize Exp $";
  */   */
   
 /*  /*
Line 232
 
Line 232
         ns->ext_mapinfos = (atoi(param));          ns->ext_mapinfos = (atoi(param));
      sprintf(tmpbuf,"%d", ns->ext_mapinfos);       sprintf(tmpbuf,"%d", ns->ext_mapinfos);
      strcat(cmdback, tmpbuf);       strcat(cmdback, tmpbuf);
    } else if (!strcmp(cmd,"extendedTextInfos")) {
           /* Added by tchize
            * prepare to use the extended text commands
            * Client toggle this to non zero to get exttext
            */
        char tmpbuf[20];
           ns->has_readable_type = (atoi(param));
        sprintf(tmpbuf,"%d", ns->has_readable_type);
        strcat(cmdback, tmpbuf);
  } else {   } else {
      /* Didn't get a setup command we understood -       /* Didn't get a setup command we understood -
       * report a failure to the client.        * report a failure to the client.
Line 304
 
Line 313
      }       }
      Write_String_To_Socket(ns, cmdback,strlen(cmdback));       Write_String_To_Socket(ns, cmdback,strlen(cmdback));
 }  }
   /*
   #define MSG_TYPE_BOOK            1
   #define MSG_TYPE_CARD            2
   #define MSG_TYPE_PAPER           3
   #define MSG_TYPE_SIGN            4
   #define MSG_TYPE_MONUMENT        5
   #define MSG_TYPE_SCRIPTED_DIALOG 6*/
   /** Reply to ExtendedInfos command */
   void ToggleExtendedText (char *buf, int len, NewSocket *ns){
        char cmdback[MAX_BUF];
        char temp[10];
        char command[50];
        int info,nextinfo,i,flag;
        cmdback[0]='\0';    
        nextinfo=0;
        while (1){
             /* 1. Extract an info*/
             info=nextinfo;
             while ( (info<len) && (buf[info]==' ') ) info++;
             if (info>=len)
                  break;
             nextinfo=info+1;
             while ( (nextinfo<len) && (buf[nextinfo]!=' ') )
                  nextinfo++; 
             if (nextinfo-info>=49) /*Erroneous info asked*/
                  continue;
             strncpy (command,&(buf[info]),nextinfo-info);
             command[nextinfo-info]='\0';
             /* 2. Interpret info*/
             i = sscanf(command,"%d",&flag);
             if ( (i==1) && (i>0) && (i<=MSG_TYPE_LAST))
                 ns->supported_readables|=(1<<flag);
             /*3. Next info*/
        }
        /* Send resulting state */
        strcpy (cmdback,"ExtendedTextSet");
        for (i=0;i<=MSG_TYPE_LAST;i++)
        if (ns->supported_readables &(1<<i)){
             strcat (cmdback," ");
             snprintf(temp,sizeof(temp),"%d",i);
             strcat (cmdback,temp);
        }
        Write_String_To_Socket(ns, cmdback,strlen(cmdback));
   }
   
 /**  /**
  * A lot like the old AskSmooth (in fact, now called by AskSmooth).   * A lot like the old AskSmooth (in fact, now called by AskSmooth).


Legend:
line(s) removed in v.1.68 
line(s) changed
 line(s) added in v.1.69

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