summaryrefslogtreecommitdiff
path: root/source4/include
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-12-11 09:07:45 +0000
committerAndrew Tridgell <tridge@samba.org>2003-12-11 09:07:45 +0000
commitfcc4efd1ea637c810eed8444080b87d7f92c837a (patch)
tree9f72b2b7b5780acc182e84532a54ae6dc26afb3a /source4/include
parente5ed18db65f33ef0b0151fc34b02e049b14d1ecd (diff)
downloadsamba-fcc4efd1ea637c810eed8444080b87d7f92c837a.tar.gz
samba-fcc4efd1ea637c810eed8444080b87d7f92c837a.tar.bz2
samba-fcc4efd1ea637c810eed8444080b87d7f92c837a.zip
the next step in the dcerpc server code. Added the link between the
IPC IO routines and the dcerpc endpoint servers. (This used to be commit 4929c53bc8dddda8a763fdfbcf81a79776d01113)
Diffstat (limited to 'source4/include')
-rw-r--r--source4/include/ntvfs.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/include/ntvfs.h b/source4/include/ntvfs.h
index 6628402a97..88122166ee 100644
--- a/source4/include/ntvfs.h
+++ b/source4/include/ntvfs.h
@@ -75,8 +75,11 @@ struct ntvfs_ops {
/* printing specific operations */
NTSTATUS (*lpq)(struct request_context *req, union smb_lpq *lpq);
- /* trans interfaces - only used by CIFS backend to prover complete passthru for testing */
+ /* trans2 interface - only used by CIFS backend to prover complete passthru for testing */
NTSTATUS (*trans2)(struct request_context *req, struct smb_trans2 *trans2);
+
+ /* trans interface - used by IPC backend for pipes and RAP calls */
+ NTSTATUS (*trans)(struct request_context *req, struct smb_trans2 *trans);
};