summaryrefslogtreecommitdiff
path: root/source4/libnet/libnet.c
diff options
context:
space:
mode:
authorRafal Szczesniak <mimir@samba.org>2006-08-21 20:52:14 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:16:21 -0500
commit1f8fda717f95edb63d4596321b8c8bfafd5a4497 (patch)
tree8c5c0db423ad19d18661953bab46fb5d06927996 /source4/libnet/libnet.c
parent7cb4dcf146b7ca41b8504571151911f0b3161e28 (diff)
downloadsamba-1f8fda717f95edb63d4596321b8c8bfafd5a4497.tar.gz
samba-1f8fda717f95edb63d4596321b8c8bfafd5a4497.tar.bz2
samba-1f8fda717f95edb63d4596321b8c8bfafd5a4497.zip
r17670: 1) Refactor libnet context structure a bit, to have rpc connection
properties more consistently reflected. 2) Add domain open routine for lsa pipe - this is needed for ongoing name resolve function. Tests (still neglected) and comments to follow. rafal (This used to be commit fe5652c2b8121bbe3b9932c43164035355478611)
Diffstat (limited to 'source4/libnet/libnet.c')
-rw-r--r--source4/libnet/libnet.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/source4/libnet/libnet.c b/source4/libnet/libnet.c
index 0dca57926d..6626e94b6f 100644
--- a/source4/libnet/libnet.c
+++ b/source4/libnet/libnet.c
@@ -45,16 +45,15 @@ struct libnet_context *libnet_context_init(struct event_context *ev)
/* name resolution methods */
ctx->name_res_methods = str_list_copy(ctx, lp_name_resolve_order());
- /* connected domain params */
- ZERO_STRUCT(ctx->domain);
+ /* connected services' params */
+ ZERO_STRUCT(ctx->samr);
+ ZERO_STRUCT(ctx->lsa);
/* currently opened user */
ZERO_STRUCT(ctx->user_handle);
- /* init pipe pointers */
- ctx->samr_pipe = NULL;
- ctx->lsa_pipe = NULL;
- ctx->pipe = NULL;
+ /* init pipe pointer */
+ ctx->pipe = NULL;
return ctx;
}