OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:netconnection
(Results
1 - 7
of
7
) sorted by null
/external/quake/quake/src/WinQuake/
net_main.cpp
732
if (!host_client->
netconnection
)
736
if (host_client->
netconnection
->driver == 0)
738
NET_SendMessage(host_client->
netconnection
, data);
762
if (NET_CanSendMessage (host_client->
netconnection
))
765
NET_SendMessage(host_client->
netconnection
, data);
769
NET_GetMessage (host_client->
netconnection
);
777
if (NET_CanSendMessage (host_client->
netconnection
))
783
NET_GetMessage (host_client->
netconnection
);
sv_main.cpp
248
struct qsocket_s *
netconnection
;
local
254
Con_DPrintf ("Client %s connected\n", client->
netconnection
->address);
261
netconnection
= client->
netconnection
;
266
client->
netconnection
=
netconnection
;
277
client->privileged = IsID(&client->
netconnection
->addr);
325
svs.clients[i].
netconnection
= ret;
742
if (NET_SendUnreliableMessage (client->
netconnection
, &msg) == -1)
809
if (NET_SendUnreliableMessage (client->
netconnection
, &msg) == -1
[
all
...]
host.cpp
353
if (NET_CanSendMessage (host_client->
netconnection
))
356
NET_SendMessage (host_client->
netconnection
, &host_client->message);
373
NET_Close (host_client->
netconnection
);
374
host_client->
netconnection
= NULL;
432
if (NET_CanSendMessage (host_client->
netconnection
))
434
NET_SendMessage(host_client->
netconnection
, &host_client->message);
439
NET_GetMessage(host_client->
netconnection
);
server.h
89
struct qsocket_s *
netconnection
; // communications handle
member in struct:client_s
host_cmd.cpp
96
seconds = (int)(net_time - client->
netconnection
->connecttime);
108
print (" %s\n", client->
netconnection
->address);
1331
if ((Sys_FloatTime() - host_client->
netconnection
->connecttime) <= sv.time)
[
all
...]
sv_user.cpp
491
ret = NET_GetMessage (host_client->
netconnection
);
net_dgrm.cpp
918
MSG_WriteLong(&net_message, (int)(net_time - client->
netconnection
->connecttime));
919
MSG_WriteString(&net_message, client->
netconnection
->address);
[
all
...]
Completed in 149 milliseconds