summaryrefslogtreecommitdiffstats
path: root/source4/libcli/wbclient/wbclient.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2014-02-18 09:49:13 +0100
committerVolker Lendecke <vl@samba.org>2014-02-18 10:28:41 +0100
commit279ee162541cdba725eeffa7fce72a5db48805ec (patch)
tree2f2dd8039da880855fd9bc39e641bc7cede1d47e /source4/libcli/wbclient/wbclient.c
parent699f86cc27d6eb26ce93a4701c0ee6c788c80a5c (diff)
downloadsamba-279ee162541cdba725eeffa7fce72a5db48805ec.tar.gz
samba-279ee162541cdba725eeffa7fce72a5db48805ec.tar.xz
samba-279ee162541cdba725eeffa7fce72a5db48805ec.zip
Revert "auth4: Remove unused wbc_context"
This reverts commit 6b04558c5e0547a807ac0fcb5eeb1085cfe602ac. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source4/libcli/wbclient/wbclient.c')
-rw-r--r--source4/libcli/wbclient/wbclient.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/source4/libcli/wbclient/wbclient.c b/source4/libcli/wbclient/wbclient.c
index 165333a6b5..3f8003bbba 100644
--- a/source4/libcli/wbclient/wbclient.c
+++ b/source4/libcli/wbclient/wbclient.c
@@ -28,6 +28,35 @@
#include "libcli/util/error.h"
#include "libcli/security/dom_sid.h"
+/**
+ * Initialize the wbclient context, talloc_free() when done.
+ *
+ * \param mem_ctx talloc context to allocate memory from
+ * \param msg_ctx message context to use
+ * \param
+ */
+struct wbc_context *wbc_init(TALLOC_CTX *mem_ctx,
+ struct imessaging_context *msg_ctx,
+ struct tevent_context *event_ctx)
+{
+ struct wbc_context *ctx;
+
+ ctx = talloc(mem_ctx, struct wbc_context);
+ if (ctx == NULL) return NULL;
+
+ ctx->event_ctx = event_ctx;
+
+ ctx->irpc_handle = irpc_binding_handle_by_name(ctx, msg_ctx,
+ "winbind_server",
+ &ndr_table_winbind);
+ if (ctx->irpc_handle == NULL) {
+ talloc_free(ctx);
+ return NULL;
+ }
+
+ return ctx;
+}
+
static int wb_simple_trans(struct tevent_context *ev, int fd,
struct winbindd_request *wb_req,
TALLOC_CTX *mem_ctx,