diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-09-27 21:08:23 -0700 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-09-27 22:55:05 -0700 |
commit | c4d2b6fbc21625dc5ed2063e5ad699309fa5a3e1 (patch) | |
tree | 72bfbc5fff7ab6af67575af387545310d0f4eb6d /source4/librpc | |
parent | 6237d560275d7d19e46afe85cb9f19313359ea80 (diff) | |
download | samba-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')
-rw-r--r-- | source4/librpc/idl/irpc.idl | 12 |
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 + ); } |