diff options
author | Rafal Szczesniak <mimir@samba.org> | 2005-07-27 21:59:16 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:30:07 -0500 |
commit | f95a494e9753b7b8f959dbc32fe739cd27f7154e (patch) | |
tree | 0b8df61b59cd5d034e8191ef3bfb2a830c8b5550 /source4 | |
parent | 5cc8a42a058a6d8850143cae68e87f1395de99cc (diff) | |
download | samba-f95a494e9753b7b8f959dbc32fe739cd27f7154e.tar.gz samba-f95a494e9753b7b8f959dbc32fe739cd27f7154e.tar.bz2 samba-f95a494e9753b7b8f959dbc32fe739cd27f7154e.zip |
r8808: More comments.
rafal
(This used to be commit da7a31d7073d156ef5c593578a05fecf770ebc93)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/libnet/userman.c | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/source4/libnet/userman.c b/source4/libnet/userman.c index ef7f2658c4..6db4d17685 100644 --- a/source4/libnet/userman.c +++ b/source4/libnet/userman.c @@ -465,6 +465,9 @@ struct usermod_state { }; +/** + * Step 1: Lookup user name + */ static NTSTATUS usermod_lookup(struct composite_context *c, struct usermod_state *s) { @@ -497,6 +500,9 @@ static NTSTATUS usermod_lookup(struct composite_context *c, } +/** + * Stage 2: Open user account + */ static NTSTATUS usermod_open(struct composite_context *c, struct usermod_state *s) { @@ -577,6 +583,9 @@ static NTSTATUS usermod_open(struct composite_context *c, } +/** + * Stage 3: Set new user account data + */ static NTSTATUS usermod_modify(struct composite_context *c, struct usermod_state *s) { @@ -589,6 +598,13 @@ static NTSTATUS usermod_modify(struct composite_context *c, } +/** + * Event handler for asynchronous request. Handles transition through + * intermediate stages of the call. + * + * @param req rpc call context + */ + static void usermod_handler(struct rpc_request *req) { struct composite_context *c = req->async.private; @@ -622,6 +638,13 @@ static void usermod_handler(struct rpc_request *req) } +/** + * Sends asynchronous usermod request + * + * @param p dce/rpc call pipe + * @param io arguments and results of the call + */ + struct composite_context *libnet_rpc_usermod_send(struct dcerpc_pipe *p, struct libnet_rpc_usermod *io) { @@ -661,6 +684,15 @@ failure: } +/** + * Waits for and receives results of asynchronous usermod call + * + * @param c composite context returned by asynchronous usermod call + * @param mem_ctx memory context of the call + * @param io pointer to results (and arguments) of the call + * @return nt status code of execution + */ + NTSTATUS libnet_rpc_usermod_recv(struct composite_context *c, TALLOC_CTX *mem_ctx, struct libnet_rpc_usermod *io) { @@ -674,6 +706,15 @@ NTSTATUS libnet_rpc_usermod_recv(struct composite_context *c, TALLOC_CTX *mem_ct } +/** + * Synchronous version of usermod call + * + * @param pipe dce/rpc call pipe + * @param mem_ctx memory context for the call + * @param io arguments and results of the call + * @return nt status code of execution + */ + NTSTATUS libnet_rpc_usermod(struct dcerpc_pipe *pipe, TALLOC_CTX *mem_ctx, struct libnet_rpc_usermod *io) |