From c4d2b6fbc21625dc5ed2063e5ad699309fa5a3e1 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 27 Sep 2010 21:08:23 -0700 Subject: s4-netlogon: added RODC DNS update call fwded to dnsupdate task when we get a netlogon RODC DNS update, we send it to the dnsupdate task --- source4/librpc/idl/irpc.idl | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'source4/librpc') diff --git a/source4/librpc/idl/irpc.idl b/source4/librpc/idl/irpc.idl index 6e2c73d94f..334c102804 100644 --- a/source4/librpc/idl/irpc.idl +++ b/source4/librpc/idl/irpc.idl @@ -1,6 +1,6 @@ #include "idl_types.h" -import "misc.idl", "security.idl", "nbt.idl"; +import "misc.idl", "security.idl", "nbt.idl", "netlogon.idl"; /* definitions for irpc primitives @@ -186,4 +186,14 @@ import "misc.idl", "security.idl", "nbt.idl"; void drepl_trigger_repl_secret( [in] astring user_dn ); + + /* + message to do RODC DNS updates via the dnsupdate task + */ + NTSTATUS dnsupdate_RODC( + [in,unique] dom_sid *dom_sid, + [in,unique] [string,charset(UTF16)] uint16 *site_name, + [in] uint32 dns_ttl, + [in,out,ref] NL_DNS_NAME_INFO_ARRAY *dns_names + ); } -- cgit