From 1da09b94eb4c602f9b0dde748181e971927160d2 Mon Sep 17 00:00:00 2001 From: Rafal Szczesniak Date: Tue, 5 Sep 2006 17:56:35 +0000 Subject: r18101: Use composite_create function and add monitor function pointer to the state structure. rafal (This used to be commit 76d73bc97dfcbba0667b8d831bfbf3113a8edfcb) --- source4/libnet/libnet_domain.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'source4/libnet/libnet_domain.c') diff --git a/source4/libnet/libnet_domain.c b/source4/libnet/libnet_domain.c index 80ae547625..806d9d0fd1 100644 --- a/source4/libnet/libnet_domain.c +++ b/source4/libnet/libnet_domain.c @@ -48,6 +48,9 @@ struct domain_open_samr_state { uint32_t access_mask; struct policy_handle connect_handle; struct policy_handle domain_handle; + + /* information about the progress */ + void (*monitor_fn)(struct monitor_msg*); }; @@ -252,15 +255,14 @@ struct composite_context *libnet_DomainOpenSamr_send(struct libnet_context *ctx, struct composite_context *c; struct domain_open_samr_state *s; - c = talloc_zero(ctx, struct composite_context); + c = composite_create(ctx, ctx->event_ctx); if (c == NULL) return NULL; s = talloc_zero(c, struct domain_open_samr_state); if (composite_nomem(s, c)) return c; - c->state = COMPOSITE_STATE_IN_PROGRESS; c->private_data = s; - c->event_ctx = ctx->event_ctx; + s->monitor_fn = monitor; s->ctx = ctx; s->pipe = ctx->samr.pipe; @@ -375,6 +377,9 @@ struct domain_open_lsa_state { struct lsa_OpenPolicy2 openpol; struct policy_handle handle; struct dcerpc_pipe *pipe; + + /* information about the progress */ + void (*monitor_fn)(struct monitor_msg*); }; -- cgit