1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r2443: check return code of event_loop_once() to catch thet cases where the server

closes the connetion and we got EBADF from select() and event_loop_once() fails

metze
(This used to be commit 9c0e50a6f3)
This commit is contained in:
Stefan Metzmacher 2004-09-20 10:40:11 +00:00 committed by Gerald (Jerry) Carter
parent 8f85b3f771
commit 6b9b169c27
4 changed files with 15 additions and 5 deletions

View File

@ -285,7 +285,9 @@ BOOL smbcli_request_receive(struct smbcli_request *req)
/* keep receiving packets until this one is replied to */
while (req->state <= SMBCLI_REQUEST_RECV) {
event_loop_once(req->transport->event.ctx);
if (event_loop_once(req->transport->event.ctx) != 0) {
return False;
}
}
return req->state == SMBCLI_REQUEST_DONE;

View File

@ -436,7 +436,9 @@ static NTSTATUS full_request(struct dcerpc_pipe *p,
while (NT_STATUS_IS_OK(state->status) && state->reply_blob) {
struct event_context *ctx = p->transport.event_context(p);
event_loop_once(ctx);
if (event_loop_once(ctx) != 0) {
return NT_STATUS_CONNECTION_DISCONNECTED;
}
}
return state->status;
@ -882,7 +884,9 @@ NTSTATUS dcerpc_request_recv(struct rpc_request *req,
while (req->state == RPC_REQUEST_PENDING) {
struct event_context *ctx = dcerpc_event_context(req->p);
event_loop_once(ctx);
if (event_loop_once(ctx) != 0) {
return NT_STATUS_CONNECTION_DISCONNECTED;
}
}
*stub_data = req->payload;
status = req->status;

View File

@ -237,7 +237,9 @@ static BOOL test_sleep(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
ctx = dcerpc_event_context(p);
while (total_done < ASYNC_COUNT) {
event_loop_once(ctx);
if (event_loop_once(ctx) != 0) {
return False;
}
for (i=0;i<ASYNC_COUNT;i++) {
if (done[i] == 0 && req[i]->state == RPC_REQUEST_DONE) {
total_done++;

View File

@ -1706,7 +1706,9 @@ static BOOL test_GetDomainInfo_async(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
/* even with this flush per request a w2k3 server seems to
clag with multiple outstanding requests. bleergh. */
event_loop_once(dcerpc_event_context(p));
if (event_loop_once(dcerpc_event_context(p)) != 0) {
return False;
}
}
for (i=0;i<ASYNC_COUNT;i++) {