mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 19:32:19 +00:00
rpc: client: don't set incomingEOF on errors
This mixing errors and EOF condition in one flag is odd. Instead let's check st->err.code where appropriate. Signed-off-by: Nikolay Shirokovskiy <nshirokovskiy@virtuozzo.com>
This commit is contained in:
parent
ad063f6192
commit
d962f56fb6
@ -86,7 +86,7 @@ virNetClientStreamEventTimerUpdate(virNetClientStreamPtr st)
|
||||
|
||||
VIR_DEBUG("Check timer rx=%p cbEvents=%d", st->rx, st->cbEvents);
|
||||
|
||||
if (((st->rx || st->incomingEOF) &&
|
||||
if (((st->rx || st->incomingEOF || st->err.code != VIR_ERR_OK) &&
|
||||
(st->cbEvents & VIR_STREAM_EVENT_READABLE)) ||
|
||||
(st->cbEvents & VIR_STREAM_EVENT_WRITABLE)) {
|
||||
VIR_DEBUG("Enabling event timer");
|
||||
@ -108,7 +108,7 @@ virNetClientStreamEventTimer(int timer ATTRIBUTE_UNUSED, void *opaque)
|
||||
|
||||
if (st->cb &&
|
||||
(st->cbEvents & VIR_STREAM_EVENT_READABLE) &&
|
||||
(st->rx || st->incomingEOF))
|
||||
(st->rx || st->incomingEOF || st->err.code != VIR_ERR_OK))
|
||||
events |= VIR_STREAM_EVENT_READABLE;
|
||||
if (st->cb &&
|
||||
(st->cbEvents & VIR_STREAM_EVENT_WRITABLE))
|
||||
@ -272,7 +272,6 @@ int virNetClientStreamSetError(virNetClientStreamPtr st,
|
||||
st->err.int1 = err.int1;
|
||||
st->err.int2 = err.int2;
|
||||
|
||||
st->incomingEOF = true;
|
||||
virNetClientStreamEventTimerUpdate(st);
|
||||
|
||||
ret = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user