diff options
author | Kai Blin <kai@samba.org> | 2011-09-29 19:34:08 -0700 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2011-10-02 13:35:49 +0200 |
commit | 1dbcb61c79a0c06fdcfa36bb9304fb0fb66d7ff8 (patch) | |
tree | 2a071c833a15c48b20f85573998327e2978e6592 /librpc/idl | |
parent | f163bd1dac691d396725ac27e4493f6d217a66ce (diff) | |
download | samba-1dbcb61c79a0c06fdcfa36bb9304fb0fb66d7ff8.tar.gz samba-1dbcb61c79a0c06fdcfa36bb9304fb0fb66d7ff8.tar.bz2 samba-1dbcb61c79a0c06fdcfa36bb9304fb0fb66d7ff8.zip |
dns: Move the dns_srv_record to the correct place in the idl file
Autobuild-User: Kai Blin <kai@samba.org>
Autobuild-Date: Sun Oct 2 13:35:49 CEST 2011 on sn-devel-104
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/dns.idl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/librpc/idl/dns.idl b/librpc/idl/dns.idl index 707e0d94da..08a1699c23 100644 --- a/librpc/idl/dns.idl +++ b/librpc/idl/dns.idl @@ -132,13 +132,6 @@ interface dns } dns_soa_record; typedef [public] struct { - uint16 priority; - uint16 weight; - uint16 port; - dns_string target; - } dns_srv_record; - - typedef [public] struct { uint16 preference; dns_string exchange; } dns_mx_record; @@ -148,6 +141,13 @@ interface dns [charset(DOS)] uint8 txt[length]; } dns_txt_record; + typedef [public] struct { + uint16 priority; + uint16 weight; + uint16 port; + dns_string target; + } dns_srv_record; + typedef [nodiscriminant,public,flag(NDR_NOALIGN)] union { [case(DNS_QTYPE_A)] ipv4address ipv4_record; [case(DNS_QTYPE_NS)] dns_string ns_record; |