summaryrefslogtreecommitdiff
path: root/source4/libnet/libnet.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/libnet/libnet.c')
-rw-r--r--source4/libnet/libnet.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/source4/libnet/libnet.c b/source4/libnet/libnet.c
index 56b55426c0..5d66005a27 100644
--- a/source4/libnet/libnet.c
+++ b/source4/libnet/libnet.c
@@ -20,27 +20,26 @@
#include "includes.h"
#include "libnet/libnet.h"
+#include "lib/events/events.h"
-struct libnet_context *libnet_context_init(void)
+struct libnet_context *libnet_context_init(struct event_context *ev)
{
- TALLOC_CTX *mem_ctx;
struct libnet_context *ctx;
- mem_ctx = talloc_init("libnet_context");
-
- ctx = talloc(mem_ctx, struct libnet_context);
+ ctx = talloc(NULL, struct libnet_context);
if (!ctx) {
return NULL;
}
- ctx->mem_ctx = mem_ctx;
+ if (ev == NULL) {
+ ev = event_context_init(ctx);
+ if (ev == NULL) {
+ talloc_free(ctx);
+ return NULL;
+ }
+ }
+ ctx->event_ctx = ev;
return ctx;
}
-void libnet_context_destroy(struct libnet_context **libnetctx)
-{
- talloc_free((*libnetctx)->mem_ctx);
-
- (*libnetctx) = NULL;
-}