OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hostcache
(Results
1 - 6
of
6
) sorted by null
/external/quake/quake/src/WinQuake/
net_loop.cpp
54
Q_strcpy(
hostcache
[0].name, "local");
56
Q_strcpy(
hostcache
[0].name, hostname.string);
57
Q_strcpy(
hostcache
[0].map, sv.name);
58
hostcache
[0].users = net_activeconnections;
59
hostcache
[0].maxusers = svs.maxclients;
60
hostcache
[0].driver = net_driverlevel;
61
Q_strcpy(
hostcache
[0].cname, "local");
net_dgrm.cpp
596
if (Q_strcasecmp (host,
hostcache
[n].name) == 0)
598
if (
hostcache
[n].driver != myDriverLevel)
600
net_landriverlevel =
hostcache
[n].ldriver;
601
max =
hostcache
[n].maxusers;
602
Q_memcpy(&sendaddr, &
hostcache
[n].addr, sizeof(struct qsockaddr));
724
if (Q_strcasecmp (host,
hostcache
[n].name) == 0)
726
if (
hostcache
[n].driver != myDriverLevel)
728
net_landriverlevel =
hostcache
[n].ldriver;
729
Q_memcpy(&sendaddr, &
hostcache
[n].addr, sizeof(struct qsockaddr));
1159
if (dfunc.AddrCompare(&readaddr, &
hostcache
[n].addr) == 0
[
all
...]
net_main.cpp
276
if (
hostcache
[n].maxusers)
277
Con_Printf("%-15.15s %-15.15s %2u/%2u\n",
hostcache
[n].name,
hostcache
[n].map,
hostcache
[n].users,
hostcache
[n].maxusers);
279
Con_Printf("%-15.15s %-15.15s\n",
hostcache
[n].name,
hostcache
[n].map);
366
hostcache_t
hostcache
[HOSTCACHESIZE];
variable
390
if (Q_strcasecmp (host,
hostcache
[n].name) == 0)
392
host =
hostcache
[n].cname
[
all
...]
menu.cpp
[
all
...]
net_ser.cpp
739
if (Q_strcmp (
hostcache
[n].cname, "#") == 0)
752
sprintf(
hostcache
[hostCacheCount].name, "COM%u", n+1);
753
Q_strcpy(
hostcache
[hostCacheCount].map, "");
754
hostcache
[hostCacheCount].users = 0;
755
hostcache
[hostCacheCount].maxusers = 0;
756
hostcache
[hostCacheCount].driver = net_driverlevel;
757
Q_strcpy(
hostcache
[hostCacheCount].cname, "#");
net.h
239
extern hostcache_t
hostcache
[HOSTCACHESIZE];
Completed in 115 milliseconds