Пример #1
0
void client_courtesy_update(struct client_t *c, struct pbuf_t *pb)
{
	heard_list_update(c, pb, c->client_courtesy, &c->client_courtesy_count, "courtesy");
}
Пример #2
0
void client_courtesy_update(struct client_t *c, struct pbuf_t *pb)
{
	heard_list_update(c, pb->data, pb->srccall_end - pb->data, pb->t, c->client_courtesy, &c->client_courtesy_count, "courtesy");
}
Пример #3
0
void client_heard_update(struct client_t *c, struct pbuf_t *pb)
{
	heard_list_update(c, pb, c->client_heard, &c->client_heard_count, "heard");
}
Пример #4
0
void client_heard_update(struct client_t *c, struct pbuf_t *pb)
{
	heard_list_update(c, pb->data, pb->srccall_end - pb->data, pb->t, c->client_heard, &c->client_heard_count, "heard");
}