diff options
Diffstat (limited to 'librpc')
-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 707e0d94da6..08a1699c23e 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; |