mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
idl: Add DNS RP record support as per RFC 1183
Not sure if we need this, but samba.org specifies it, so this could cause ANY queries against samba.org to fail. Signed-off-by: Kai Blin <kai@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
This commit is contained in:
parent
df43027bd8
commit
96ed585f09
@ -161,6 +161,12 @@ interface dns
|
||||
[charset(DOS)] uint8 txt[length];
|
||||
} dns_txt_record;
|
||||
|
||||
typedef [public] struct {
|
||||
dns_string mbox;
|
||||
dns_string txt;
|
||||
|
||||
} dns_rp_record;
|
||||
|
||||
typedef [public] struct {
|
||||
uint16 priority;
|
||||
uint16 weight;
|
||||
@ -221,6 +227,7 @@ interface dns
|
||||
[case(DNS_QTYPE_PTR)] dns_string ptr_record;
|
||||
[case(DNS_QTYPE_MX)] dns_mx_record mx_record;
|
||||
[case(DNS_QTYPE_TXT)] dns_txt_record txt_record;
|
||||
[case(DNS_QTYPE_RP)] dns_rp_record rp_record;
|
||||
[case(DNS_QTYPE_AAAA)] ipv6address ipv6_record;
|
||||
[case(DNS_QTYPE_SRV)] dns_srv_record srv_record;
|
||||
[case(DNS_QTYPE_OPT)] dns_opt_record opt_record;
|
||||
|
Loading…
Reference in New Issue
Block a user