summaryrefslogtreecommitdiffstats
path: root/source3/include/async_smb.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-08-27 19:26:40 +0200
committerVolker Lendecke <vl@samba.org>2008-08-28 18:15:59 +0200
commitbb0fc9cfceab7e961eaa9049d111121609ff8174 (patch)
treeb0c7868eb295412b3b0bbe7f2510dfbdbd74d915 /source3/include/async_smb.h
parentb054f14111337c826548d7728dc2b0a66ab5beae (diff)
downloadsamba-bb0fc9cfceab7e961eaa9049d111121609ff8174.tar.gz
samba-bb0fc9cfceab7e961eaa9049d111121609ff8174.tar.xz
samba-bb0fc9cfceab7e961eaa9049d111121609ff8174.zip
Add cli_request->recv_helper
Necessary for requests with multiple replies (This used to be commit cb2e338eb33dfb4627f9b43456af0c86d7d268c6)
Diffstat (limited to 'source3/include/async_smb.h')
-rw-r--r--source3/include/async_smb.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/include/async_smb.h b/source3/include/async_smb.h
index 1053de29422..6a09bb6001e 100644
--- a/source3/include/async_smb.h
+++ b/source3/include/async_smb.h
@@ -91,6 +91,18 @@ struct cli_request {
uint8_t *rcvbuf;
} read;
} data;
+
+ /**
+ * For requests that don't follow the strict request/reply pattern
+ * such as the transaction request family and echo requests it is
+ * necessary to break the standard procedure in
+ * handle_incoming_pdu(). For a simple example look at
+ * cli_echo_recv_helper().
+ */
+ struct {
+ void (*fn)(struct async_req *req);
+ void *priv;
+ } recv_helper;
};
/*