diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-04-17 13:51:00 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-04-17 13:51:00 +0200 |
commit | 194d5014d8c07a786acf94063a5c4b227f0b7d4b (patch) | |
tree | e0fedc4a1472a80f7aa32a1004be2d68e11a56e1 /source3/librpc/rpc/dcerpc.h | |
parent | f303547e1f34de0b12f1341c6e234112aa37b9f0 (diff) | |
download | samba-194d5014d8c07a786acf94063a5c4b227f0b7d4b.tar.gz samba-194d5014d8c07a786acf94063a5c4b227f0b7d4b.tar.xz samba-194d5014d8c07a786acf94063a5c4b227f0b7d4b.zip |
Add some comments.
(This used to be commit fd321fd77fcb9fbebcaa724c58a1beee606e87cd)
Diffstat (limited to 'source3/librpc/rpc/dcerpc.h')
-rw-r--r-- | source3/librpc/rpc/dcerpc.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/source3/librpc/rpc/dcerpc.h b/source3/librpc/rpc/dcerpc.h index a225f821895..739e60a341a 100644 --- a/source3/librpc/rpc/dcerpc.h +++ b/source3/librpc/rpc/dcerpc.h @@ -33,9 +33,16 @@ struct loadparm_context; struct cli_credentials; +/** + * Connection to a particular DCE/RPC interface. + */ struct dcerpc_pipe { const struct ndr_interface_table *table; + + /** SMB context used when transport is ncacn_np. */ struct cli_state *cli; + + /** Samba 3 DCE/RPC client context. */ struct rpc_pipe_client *rpc_cli; }; @@ -53,7 +60,7 @@ enum dcerpc_transport_t { NCADG_UNIX_DGRAM, NCACN_HTTP, NCADG_IPX, NCACN_SPX }; -/* this describes a binding to a particular transport/pipe */ +/** this describes a binding to a particular transport/pipe */ struct dcerpc_binding { enum dcerpc_transport_t transport; struct ndr_syntax_id object; @@ -65,7 +72,4 @@ struct dcerpc_binding { uint32_t assoc_group_id; }; - - - #endif /* __DCERPC_H__ */ |