From: Günther Deschner Date: Mon, 15 Feb 2021 16:34:55 +0000 (+0100) Subject: s3-librpc: add ODJ_PROVISION_DATA pointer to libnet_JoinCtx X-Git-Tag: talloc-2.3.3~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=beaab062891670bde92c37be6afbf30dacaaec0c;p=thirdparty%2Fsamba.git s3-librpc: add ODJ_PROVISION_DATA pointer to libnet_JoinCtx It will be used later to pass in offline domain join structs to serve request offline domain join requests. Guenther Signed-off-by: Guenther Deschner Reviewed-by: Alexander Bokovoy --- diff --git a/source3/librpc/idl/libnet_join.idl b/source3/librpc/idl/libnet_join.idl index 2c49ec5b158..dce654e0b77 100644 --- a/source3/librpc/idl/libnet_join.idl +++ b/source3/librpc/idl/libnet_join.idl @@ -1,6 +1,6 @@ #include "idl_types.h" -import "wkssvc.idl", "security.idl", "misc.idl", "netlogon.idl"; +import "wkssvc.idl", "security.idl", "misc.idl", "netlogon.idl", "ODJ.idl"; /* libnetjoin interface definition @@ -46,6 +46,7 @@ interface libnetjoin [in,noprint] messaging_context *msg_ctx, [in] uint32 desired_encryption_types, [in] boolean8 provision_computer_account_only, + [in,out,unique] ODJ_PROVISION_DATA *odj_provision_data, [out] string account_name, [out] string netbios_domain_name, [out] string dns_domain_name, diff --git a/source3/librpc/wscript_build b/source3/librpc/wscript_build index c1fa54c0f53..a0f1a9d05ff 100644 --- a/source3/librpc/wscript_build +++ b/source3/librpc/wscript_build @@ -9,7 +9,7 @@ bld.SAMBA3_SUBSYSTEM('NDR_LIBNETAPI', bld.SAMBA3_SUBSYSTEM('NDR_LIBNET_JOIN', source='gen_ndr/ndr_libnet_join.c', - public_deps='ndr krb5samba' + public_deps='ndr krb5samba NDR_ODJ' ) bld.SAMBA3_SUBSYSTEM('NDR_OPEN_FILES',