summaryrefslogtreecommitdiff
path: root/source3/include/client.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-04-05 23:28:01 +0200
committerVolker Lendecke <vl@samba.org>2009-04-06 21:32:07 +0200
commit64067f920405143895b1e39790e9bd2a6e176d00 (patch)
tree63370a9bca3caa5386bb9d9dc40c26b72b8c8a83 /source3/include/client.h
parent86b09e84aefefdb9c06b66f46886f1bad70797a3 (diff)
downloadsamba-64067f920405143895b1e39790e9bd2a6e176d00.tar.gz
samba-64067f920405143895b1e39790e9bd2a6e176d00.tar.bz2
samba-64067f920405143895b1e39790e9bd2a6e176d00.zip
Remove async_req based async libsmb infrastructure
Diffstat (limited to 'source3/include/client.h')
-rw-r--r--source3/include/client.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/source3/include/client.h b/source3/include/client.h
index c10d2109d8..3461dfa47a 100644
--- a/source3/include/client.h
+++ b/source3/include/client.h
@@ -264,31 +264,6 @@ struct cli_state {
bool force_dos_errors;
bool case_sensitive; /* False by default. */
- /**
- * fd_event is around while we have async requests outstanding or are
- * building a chained request.
- *
- * (fd_event!=NULL) &&
- * ((outstanding_request!=NULL)||(chain_accumulator!=NULL))
- *
- * should always be true, as well as the reverse: If both cli_request
- * pointers are NULL, no fd_event is around.
- */
- struct fd_event *fd_event;
- char *evt_inbuf;
-
- /**
- * A linked list of requests that are waiting for a reply
- */
- struct cli_request *outstanding_requests;
-
- /**
- * The place to build up the list of chained requests. In CIFS, a
- * single cli_request corresponds to a MID and can serve more than one
- * chained async_req.
- */
- struct cli_request *chain_accumulator;
-
/* Where (if anywhere) this is mounted under DFS. */
char *dfs_mountpoint;