summaryrefslogtreecommitdiff
path: root/source4/librpc/idl
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-09-27 21:08:23 -0700
committerAndrew Tridgell <tridge@samba.org>2010-09-27 22:55:05 -0700
commitc4d2b6fbc21625dc5ed2063e5ad699309fa5a3e1 (patch)
tree72bfbc5fff7ab6af67575af387545310d0f4eb6d /source4/librpc/idl
parent6237d560275d7d19e46afe85cb9f19313359ea80 (diff)
downloadsamba-c4d2b6fbc21625dc5ed2063e5ad699309fa5a3e1.tar.gz
samba-c4d2b6fbc21625dc5ed2063e5ad699309fa5a3e1.tar.bz2
samba-c4d2b6fbc21625dc5ed2063e5ad699309fa5a3e1.zip
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
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r--source4/librpc/idl/irpc.idl12
1 files changed, 11 insertions, 1 deletions
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
+ );
}