diff options
author | Jeremy Allison <jra@samba.org> | 2017-04-20 12:24:43 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2017-04-22 01:17:00 +0200 |
commit | 306783d6f5d577a0b8bd31d659d8c802f22f0333 (patch) | |
tree | 20e1c5a45b027d061d3dc0cab9028bbccaef7ab7 /source4/echo_server | |
parent | 9342b3ebf7fe7b7565406bd9a606b6676c08b029 (diff) | |
download | samba-306783d6f5d577a0b8bd31d659d8c802f22f0333.tar.gz |
lib: modules: Change XXX_init interface from XXX_init(void) to XXX_init(TALLOC_CTX *)
Not currently used - no logic changes inside.
This will make it possible to pass down a long-lived talloc
context from the loading function for modules to use instead
of having them internally all use talloc_autofree_context()
which is a hidden global.
Updated all known module interface numbers, and added a
WHATSNEW.
Signed-off-by: Jeremy Allison <jra@samba.org>
Signed-off-by: Ralph Böhme <slow@samba.org>
Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Sat Apr 22 01:17:00 CEST 2017 on sn-devel-144
Diffstat (limited to 'source4/echo_server')
-rw-r--r-- | source4/echo_server/echo_server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/echo_server/echo_server.c b/source4/echo_server/echo_server.c index a3e69741b77..a934b5b431c 100644 --- a/source4/echo_server/echo_server.c +++ b/source4/echo_server/echo_server.c @@ -33,7 +33,7 @@ #include "lib/tsocket/tsocket.h" #include "libds/common/roles.h" -NTSTATUS server_service_echo_init(void); +NTSTATUS server_service_echo_init(TALLOC_CTX *); /* Structure to hold an echo server socket */ struct echo_socket { @@ -341,7 +341,7 @@ static void echo_task_init(struct task_server *task) * This is the function you need to put into the wscript_build file as * init_function. All the real work happens in "echo_task_init" above. */ -NTSTATUS server_service_echo_init(void) +NTSTATUS server_service_echo_init(TALLOC_CTX *ctx) { return register_server_service("echo", echo_task_init); } |