mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-23 02:23:02 +01:00
ensure messages in queue are always delivered in order
This commit is contained in:
parent
5a175f374a
commit
5aad8764b1
@ -134,23 +134,23 @@ void cqueue_try_send(ToxWindow *self, Tox *m)
|
|||||||
{
|
{
|
||||||
struct chat_queue *q = self->chatwin->cqueue;
|
struct chat_queue *q = self->chatwin->cqueue;
|
||||||
struct cqueue_msg *msg = q->root;
|
struct cqueue_msg *msg = q->root;
|
||||||
|
|
||||||
|
if (!msg)
|
||||||
|
return;
|
||||||
|
|
||||||
uint64_t curtime = get_unix_time();
|
uint64_t curtime = get_unix_time();
|
||||||
|
|
||||||
while (msg) {
|
if (msg->receipt != 0 && !timed_out(msg->last_send_try, curtime, CQUEUE_TRY_SEND_INTERVAL))
|
||||||
if (msg->receipt != 0 && !timed_out(msg->last_send_try, curtime, CQUEUE_TRY_SEND_INTERVAL)) {
|
|
||||||
msg = msg->next;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint32_t receipt = 0;
|
|
||||||
|
|
||||||
if (msg->type == OUT_MSG)
|
|
||||||
receipt = tox_send_message(m, self->num, (uint8_t *) msg->message, msg->len);
|
|
||||||
else
|
|
||||||
receipt = tox_send_action(m, self->num, (uint8_t *) msg->message, msg->len);
|
|
||||||
|
|
||||||
msg->last_send_try = curtime;
|
|
||||||
msg->receipt = receipt;
|
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
uint32_t receipt = 0;
|
||||||
|
|
||||||
|
if (msg->type == OUT_MSG)
|
||||||
|
receipt = tox_send_message(m, self->num, (uint8_t *) msg->message, msg->len);
|
||||||
|
else
|
||||||
|
receipt = tox_send_action(m, self->num, (uint8_t *) msg->message, msg->len);
|
||||||
|
|
||||||
|
msg->last_send_try = curtime;
|
||||||
|
msg->receipt = receipt;
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
@ -761,7 +761,7 @@ void *thread_cqueue(void *data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
pthread_mutex_unlock(&Winthread.lock);
|
pthread_mutex_unlock(&Winthread.lock);
|
||||||
usleep(7000);
|
usleep(4000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user