| 195 |
|
send_queued_write(client_p); |
| 196 |
|
} |
| 197 |
|
|
| 198 |
< |
if (IsServer(client_p)) |
| 198 |
> |
if (IsClient(client_p)) |
| 199 |
> |
{ |
| 200 |
> |
++ServerStats.is_cl; |
| 201 |
> |
ServerStats.is_cbs += client_p->localClient->send.bytes; |
| 202 |
> |
ServerStats.is_cbr += client_p->localClient->recv.bytes; |
| 203 |
> |
ServerStats.is_cti += CurrentTime - client_p->firsttime; |
| 204 |
> |
} |
| 205 |
> |
else if (IsServer(client_p)) |
| 206 |
|
{ |
| 207 |
|
++ServerStats.is_sv; |
| 208 |
|
ServerStats.is_sbs += client_p->localClient->send.bytes; |
| 233 |
|
HANGONRETRYDELAY : ConFreq(aclass); |
| 234 |
|
} |
| 235 |
|
} |
| 229 |
– |
else if (IsClient(client_p)) |
| 230 |
– |
{ |
| 231 |
– |
++ServerStats.is_cl; |
| 232 |
– |
ServerStats.is_cbs += client_p->localClient->send.bytes; |
| 233 |
– |
ServerStats.is_cbr += client_p->localClient->recv.bytes; |
| 234 |
– |
ServerStats.is_cti += CurrentTime - client_p->firsttime; |
| 235 |
– |
} |
| 236 |
|
else |
| 237 |
|
++ServerStats.is_ni; |
| 238 |
|
|