HomeSort by relevance Sort by last modified time
    Searched refs:host_client (Results 1 - 14 of 14) sorted by null

  /external/quake/quake/src/QW/server/
sv_user.c 45 host_client and sv_player will be valid.
62 if (host_client->state == cs_spawned)
65 host_client->state = cs_connected;
66 host_client->connection_started = realtime;
69 // SV_FullClientUpdate (host_client, &sv.reliable_datagram);
70 // host_client->sendinfo = true;
78 if (host_client->num_backbuf) {
79 Con_Printf("WARNING %s: [SV_New] Back buffered (%d0, clearing", host_client->name, host_client->netchan.message.cursize);
80 host_client->num_backbuf = 0
    [all...]
sv_send.c 66 ClientReliableWrite_Begin (host_client, svc_print, strlen(outputbuf)+3);
67 ClientReliableWrite_Byte (host_client, PRINT_HIGH);
68 ClientReliableWrite_String (host_client, outputbuf);
625 for (i=0, host_client = svs.clients ; i<MAX_CLIENTS ; i++, host_client++)
627 if (host_client->state != cs_spawned)
629 if (host_client->sendinfo)
631 host_client->sendinfo = false;
632 SV_FullClientUpdate (host_client, &sv.reliable_datagram);
634 if (host_client->old_frags != host_client->edict->v.frags
    [all...]
sv_init.c 160 for (i=0, host_client = svs.clients ; i<MAX_CLIENTS ; i++, host_client++)
162 if (host_client->state != cs_spawned)
166 host_client->state = cs_connected;
169 pr_global_struct->self = EDICT_TO_PROG(host_client->edict);
172 host_client->spawn_parms[j] = (&pr_global_struct->parm1)[j];
sv_ccmds.c 162 Sets host_client and sv_player to the player with idnum Cmd_Argv(1)
179 host_client = cl;
180 sv_player = host_client->edict;
209 SV_ClientPrintf (host_client, PRINT_HIGH, "godmode OFF\n");
211 SV_ClientPrintf (host_client, PRINT_HIGH, "godmode ON\n");
229 SV_ClientPrintf (host_client, PRINT_HIGH, "noclip ON\n");
234 SV_ClientPrintf (host_client, PRINT_HIGH, "noclip OFF\n");
632 Info_Print (host_client->userinfo);
server.h 332 extern client_t *host_client;
sv_main.c 34 client_t *host_client; // current client variable
    [all...]
  /external/quake/quake/src/WinQuake/
host_cmd.cpp 128 if (pr_global_struct->deathmatch && !host_client->privileged)
146 if (pr_global_struct->deathmatch && !host_client->privileged)
166 if (pr_global_struct->deathmatch && !host_client->privileged)
198 if (pr_global_struct->deathmatch && !host_client->privileged)
942 if (host_client->name[0] && strcmp(host_client->name, "unconnected") )
943 if (Q_strcmp(host_client->name, newName) != 0)
944 Con_Printf ("%s renamed to %s\n", host_client->name, newName);
945 Q_strcpy (host_client->name, newName);
946 host_client->edict->u.v.netname = host_client->name - pr_strings
    [all...]
host.cpp 51 client_t *host_client; // current client variable
287 MSG_WriteByte (&host_client->message, svc_print);
288 MSG_WriteString (&host_client->message, string);
332 MSG_WriteByte (&host_client->message, svc_stufftext);
333 MSG_WriteString (&host_client->message, string);
353 if (NET_CanSendMessage (host_client->netconnection))
355 MSG_WriteByte (&host_client->message, svc_disconnect);
356 NET_SendMessage (host_client->netconnection, &host_client->message);
359 if (host_client->edict && host_client->spawned
    [all...]
sv_user.cpp 403 cmd = host_client->cmd;
445 host_client->ping_times[host_client->num_pings%NUM_PING_TIMES]
447 host_client->num_pings++;
453 VectorCopy (angle, host_client->edict->u.v.v_angle);
462 host_client->edict->u.v.button0 = bits & 1;
463 host_client->edict->u.v.button2 = (bits & 2)>>1;
467 host_client->edict->u.v.impulse = i;
471 host_client->edict->u.v.light_level = MSG_ReadByte ();
491 ret = NET_GetMessage (host_client->netconnection)
    [all...]
sv_main.cpp 762 for (i=0, host_client = svs.clients ; i<svs.maxclients ; i++, host_client++)
764 if (host_client->old_frags != host_client->edict->u.v.frags)
772 MSG_WriteShort (&client->message, (int) host_client->edict->u.v.frags);
775 host_client->old_frags = (int) host_client->edict->u.v.frags;
827 for (i=0, host_client = svs.clients ; i<svs.maxclients ; i++, host_client++)
829 if (!host_client->active
    [all...]
net_main.cpp 730 for (i=0, host_client = svs.clients ; i<svs.maxclients ; i++, host_client++)
732 if (!host_client->netconnection)
734 if (host_client->active)
736 if (host_client->netconnection->driver == 0)
738 NET_SendMessage(host_client->netconnection, data);
758 for (i=0, host_client = svs.clients ; i<svs.maxclients ; i++, host_client++)
762 if (NET_CanSendMessage (host_client->netconnection))
765 NET_SendMessage(host_client->netconnection, data)
    [all...]
server.h 208 extern client_t *host_client;
pr_cmds.cpp 815 old = host_client;
816 host_client = &svs.clients[entnum-1];
818 host_client = old;
    [all...]
net_dgrm.cpp 117 if (pr_global_struct->deathmatch && !host_client->privileged)
    [all...]

Completed in 558 milliseconds