summaryrefslogtreecommitdiff
path: root/librpc/idl/dnsp.idl
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-09-26 09:49:42 +1000
committerAndrew Tridgell <tridge@samba.org>2011-10-04 15:08:56 +1100
commitff482bc836ba25f5462499e19fff0eec7d767385 (patch)
tree84717c22687edf4db7261c38a54e70516b929d56 /librpc/idl/dnsp.idl
parent2fbdaab331e5ba5ffb9ce2784c60cf99f84ad5b6 (diff)
downloadsamba-ff482bc836ba25f5462499e19fff0eec7d767385.tar.gz
samba-ff482bc836ba25f5462499e19fff0eec7d767385.tar.bz2
samba-ff482bc836ba25f5462499e19fff0eec7d767385.zip
dns: filled in dnsserver.idl
this fills in the functions and structures for the dnsserver RPC protocol. This protocol is used during a subdomain join to add the NS glue record to the parent domain
Diffstat (limited to 'librpc/idl/dnsp.idl')
-rw-r--r--librpc/idl/dnsp.idl4
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/idl/dnsp.idl b/librpc/idl/dnsp.idl
index f8cf1d43be..12af30a928 100644
--- a/librpc/idl/dnsp.idl
+++ b/librpc/idl/dnsp.idl
@@ -23,7 +23,7 @@ import "misc.idl";
interface dnsp
{
- typedef [enum16bit] enum {
+ typedef [enum16bit,public] enum {
DNS_TYPE_TOMBSTONE = 0x0,
DNS_TYPE_A = 0x1,
DNS_TYPE_NS = 0x2,
@@ -108,7 +108,7 @@ interface dnsp
dnsp_name nameTarget;
} dnsp_srv;
- typedef [nodiscriminant,gensize] union {
+ typedef [nodiscriminant,gensize,public] union {
[case(DNS_TYPE_TOMBSTONE)] NTTIME timestamp;
[case(DNS_TYPE_A)] [flag(NDR_BIG_ENDIAN)] ipv4address ipv4;
[case(DNS_TYPE_NS)] dnsp_name ns;