Difference for socket/loop.c from version 1.17 to 1.18


version 1.17 version 1.18
Line 1
 
Line 1
   
 /*  /*
  * static char *rcsid_loop_c =   * static char *rcsid_loop_c =
  *    "$Id: loop.c,v 1.17 2001/12/18 08:58:03 garbled Exp $";   *    "$Id: loop.c,v 1.18 2002/03/26 07:18:57 mwedel Exp $";
  */   */
   
 /*  /*
     CrossFire, A Multiplayer game for X-windows      CrossFire, A Multiplayer game for X-windows
   
     Copyright (C) 2001 Mark Wedel      Copyright (C) 2002 Mark Wedel & The Crossfire Development Team
     Copyright (C) 1992 Frank Tore Johansen      Copyright (C) 1992 Frank Tore Johansen
   
     This program is free software; you can redistribute it and/or modify      This program is free software; you can redistribute it and/or modify
Line 24
 
Line 24
     along with this program; if not, write to the Free Software      along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
   
     The author can be reached via e-mail to mwedel@scruz.net      The author can be reached via e-mail to crossfire-devel@real-time.com
 */  */
   
 /* socket.c mainly deals with initialization and higher level socket  /* socket.c mainly deals with initialization and higher level socket
Line 100
 
Line 100
     { "command", PlayerCmd},      { "command", PlayerCmd},
     { "ncom", (func_uint8_int_pl)NewPlayerCmd},      { "ncom", (func_uint8_int_pl)NewPlayerCmd},
     { "lookat", LookAt},      { "lookat", LookAt},
     { "askface", SendFaceCmd}, /* Added: phil */  
     { "mapredraw", MapRedrawCmd}, /* Added: phil */      { "mapredraw", MapRedrawCmd}, /* Added: phil */
     { "lock", (func_uint8_int_pl)LockItem},      { "lock", (func_uint8_int_pl)LockItem},
     { "mark", (func_uint8_int_pl)MarkItem},      { "mark", (func_uint8_int_pl)MarkItem},
     { NULL, NULL} /* terminator */      { NULL, NULL} /* terminator */
 };  };
   
 static struct NsCmdMapping nscommands[] = {  static struct NsCmdMapping nscommands[] = {
     { "version", VersionCmd },  
     { "addme", AddMeCmd },      { "addme", AddMeCmd },
       { "askface", SendFaceCmd}, /* Added: phil */
       { "requestinfo", RequestInfo},
     { "setfacemode", SetFaceMode},      { "setfacemode", SetFaceMode},
     { "setsound", SetSound},      { "setsound", SetSound},
     { "setup", SetUp},      { "setup", SetUp},
       { "version", VersionCmd },
     { NULL, NULL} /* terminator */      { NULL, NULL} /* terminator */
 };  };
   
   /* RequestInfo is sort of a meta command - there is some specific
    * request of information, but we call other functions to provide
    * that information.
    */
   void RequestInfo(char *buf, int len, NewSocket *ns)
   {
       char    *params=NULL, *cp;
       /* No match */
       char bigbuf[MAX_BUF];
       int slen;
   
       /* Set up replyinfo before we modify any of the buffers - this is used
        * if we don't find a match.
        */
       strcpy(bigbuf,"replyinfo ");
       slen = strlen(bigbuf);
       safe_strcat(bigbuf, buf, &slen, MAX_BUF);
   
       /* find the first space, make it null, and update the
        * params pointer.
        */
       for (cp = buf; *cp != '\0'; cp++)
    if (*cp==' ') {
        *cp = '\0';
        params = cp + 1;
        break;
    }
       if (!strcmp(buf, "image_info")) send_image_info(ns, params);
       else if (!strcmp(buf,"image_sums")) send_image_sums(ns, params);
       else Write_String_To_Socket(ns, bigbuf, len);
   }
   
 void Handle_Oldsocket(NewSocket *ns)  void Handle_Oldsocket(NewSocket *ns)
 {  {


Legend:
line(s) removed in v.1.17 
line(s) changed
 line(s) added in v.1.18

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