frame ack code cleanup, add comments for possible client acks, when pointer, use NULL, not 0
This commit is contained in:
parent
3ac0120fe7
commit
3f14559822
@ -2265,7 +2265,7 @@ xrdp_mm_check_wait_objs(struct xrdp_mm *self)
|
|||||||
|
|
||||||
rv = 0;
|
rv = 0;
|
||||||
|
|
||||||
if ((self->sesman_trans != 0) && self->sesman_trans_up)
|
if ((self->sesman_trans != NULL) && self->sesman_trans_up)
|
||||||
{
|
{
|
||||||
if (trans_check_wait_objs(self->sesman_trans) != 0)
|
if (trans_check_wait_objs(self->sesman_trans) != 0)
|
||||||
{
|
{
|
||||||
@ -2278,7 +2278,7 @@ xrdp_mm_check_wait_objs(struct xrdp_mm *self)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((self->chan_trans != 0) && self->chan_trans_up)
|
if ((self->chan_trans != NULL) && self->chan_trans_up)
|
||||||
{
|
{
|
||||||
if (trans_check_wait_objs(self->chan_trans) != 0)
|
if (trans_check_wait_objs(self->chan_trans) != 0)
|
||||||
{
|
{
|
||||||
@ -2286,9 +2286,9 @@ xrdp_mm_check_wait_objs(struct xrdp_mm *self)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (self->mod != 0)
|
if (self->mod != NULL)
|
||||||
{
|
{
|
||||||
if (self->mod->mod_check_wait_objs != 0)
|
if (self->mod->mod_check_wait_objs != NULL)
|
||||||
{
|
{
|
||||||
rv = self->mod->mod_check_wait_objs(self->mod);
|
rv = self->mod->mod_check_wait_objs(self->mod);
|
||||||
}
|
}
|
||||||
@ -2297,7 +2297,7 @@ xrdp_mm_check_wait_objs(struct xrdp_mm *self)
|
|||||||
if (self->delete_sesman_trans)
|
if (self->delete_sesman_trans)
|
||||||
{
|
{
|
||||||
trans_delete(self->sesman_trans);
|
trans_delete(self->sesman_trans);
|
||||||
self->sesman_trans = 0;
|
self->sesman_trans = NULL;
|
||||||
self->sesman_trans_up = 0;
|
self->sesman_trans_up = 0;
|
||||||
self->delete_sesman_trans = 0;
|
self->delete_sesman_trans = 0;
|
||||||
}
|
}
|
||||||
@ -2305,12 +2305,12 @@ xrdp_mm_check_wait_objs(struct xrdp_mm *self)
|
|||||||
if (self->delete_chan_trans)
|
if (self->delete_chan_trans)
|
||||||
{
|
{
|
||||||
trans_delete(self->chan_trans);
|
trans_delete(self->chan_trans);
|
||||||
self->chan_trans = 0;
|
self->chan_trans = NULL;
|
||||||
self->chan_trans_up = 0;
|
self->chan_trans_up = 0;
|
||||||
self->delete_chan_trans = 0;
|
self->delete_chan_trans = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (self->encoder != 0)
|
if (self->encoder != NULL)
|
||||||
{
|
{
|
||||||
if (g_is_wait_obj_set(self->encoder->xrdp_encoder_event_processed))
|
if (g_is_wait_obj_set(self->encoder->xrdp_encoder_event_processed))
|
||||||
{
|
{
|
||||||
@ -2336,13 +2336,19 @@ xrdp_mm_frame_ack(struct xrdp_mm *self, int frame_id)
|
|||||||
encoder = self->encoder;
|
encoder = self->encoder;
|
||||||
LLOGLN(10, ("xrdp_mm_frame_ack: incoming %d, client %d, server %d",
|
LLOGLN(10, ("xrdp_mm_frame_ack: incoming %d, client %d, server %d",
|
||||||
frame_id, encoder->frame_id_client, encoder->frame_id_server));
|
frame_id, encoder->frame_id_client, encoder->frame_id_server));
|
||||||
if (frame_id < 0)
|
if ((frame_id < 0) || (frame_id > encoder->frame_id_server))
|
||||||
{
|
{
|
||||||
/* if frame_id == -1 ack all sent frames */
|
/* if frame_id is negative or bigger then what server last sent
|
||||||
|
just ack all sent frames */
|
||||||
|
/* some clients can send big number just to clear all
|
||||||
|
pending frames */
|
||||||
encoder->frame_id_client = encoder->frame_id_server;
|
encoder->frame_id_client = encoder->frame_id_server;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
/* frame acks can come out of order so ignore older one */
|
/* frame acks can come out of order so ignore older one */
|
||||||
encoder->frame_id_client = MAX(frame_id, encoder->frame_id_client);
|
encoder->frame_id_client = MAX(frame_id, encoder->frame_id_client);
|
||||||
|
}
|
||||||
xrdp_mm_update_module_frame_ack(self);
|
xrdp_mm_update_module_frame_ack(self);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user