summaryrefslogtreecommitdiff
path: root/source4/libcli/raw/clitransport.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-07-04 19:52:23 +0200
committerStefan Metzmacher <metze@samba.org>2008-07-07 13:43:13 +0200
commit7718a89222549d3d38f58193374d7b5d6b0e79fa (patch)
tree6d5e00572b608e51831fedb657f9b09d6c30f69d /source4/libcli/raw/clitransport.c
parent70ccb7e7ce0154c98b3bb26c4a85b52b4929ecf1 (diff)
downloadsamba-7718a89222549d3d38f58193374d7b5d6b0e79fa.tar.gz
samba-7718a89222549d3d38f58193374d7b5d6b0e79fa.tar.bz2
samba-7718a89222549d3d38f58193374d7b5d6b0e79fa.zip
libcli/raw: add a recv_helper hook infrastructure
The recv helper will be called when a response comes and the recv helper can decide to let the request on the SMBCLI_REQUEST_RECV when more reponse packets are expected. It's up to the helper function to keep a reference to the in buffers, each incoming response overwrites req->in. metze (This used to be commit 6d84af89ba96627abe142ba7080c24ae2421ed6c)
Diffstat (limited to 'source4/libcli/raw/clitransport.c')
-rw-r--r--source4/libcli/raw/clitransport.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/source4/libcli/raw/clitransport.c b/source4/libcli/raw/clitransport.c
index 34fb96230d..e95ae3271e 100644
--- a/source4/libcli/raw/clitransport.c
+++ b/source4/libcli/raw/clitransport.c
@@ -480,8 +480,22 @@ async:
/* if this request has an async handler then call that to
notify that the reply has been received. This might destroy
the request so it must happen last */
- DLIST_REMOVE(transport->pending_recv, req);
+
req->state = SMBCLI_REQUEST_DONE;
+
+ if (req->recv_helper.fn) {
+ /*
+ * let the recv helper decide in
+ * what state the request really is
+ */
+ req->state = req->recv_helper.fn(req);
+
+ /* if more parts are needed, wait for them */
+ if (req->state <= SMBCLI_REQUEST_RECV) {
+ return NT_STATUS_OK;
+ }
+ }
+ DLIST_REMOVE(transport->pending_recv, req);
if (req->async.fn) {
req->async.fn(req);
}