diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-08-30 05:35:30 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:25 -0500 |
commit | 4db64692e717d10dcd69cc745e8d69a5f4a2be9d (patch) | |
tree | 6cdcd1af52ec40f1232e7736ab88e6025a485e28 /source4/librpc/rpc/dcerpc.h | |
parent | f3d946646975cc04c5abd6b41adaf547175d6aab (diff) | |
download | samba-4db64692e717d10dcd69cc745e8d69a5f4a2be9d.tar.gz samba-4db64692e717d10dcd69cc745e8d69a5f4a2be9d.tar.bz2 samba-4db64692e717d10dcd69cc745e8d69a5f4a2be9d.zip |
r2103: in the conversion to async rpc I simplified the smb backend to only
use readx/writex instead of the more efficient SMBtrans calls. This
patch restores the efficiency by using SMBtrans when possible.
(This used to be commit 83fbe080e7fcdf4168d85f654b802dc4538b8984)
Diffstat (limited to 'source4/librpc/rpc/dcerpc.h')
-rw-r--r-- | source4/librpc/rpc/dcerpc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/rpc/dcerpc.h b/source4/librpc/rpc/dcerpc.h index 2dce5df92a..91899a9fec 100644 --- a/source4/librpc/rpc/dcerpc.h +++ b/source4/librpc/rpc/dcerpc.h @@ -52,7 +52,7 @@ struct dcerpc_pipe { const char *(*peer_name)(struct dcerpc_pipe *); /* send a request to the server */ - NTSTATUS (*send_request)(struct dcerpc_pipe *, DATA_BLOB *); + NTSTATUS (*send_request)(struct dcerpc_pipe *, DATA_BLOB *, BOOL trigger_read); /* send a read request to the server */ NTSTATUS (*send_read)(struct dcerpc_pipe *); |