1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/librpc/idl/dnsp.idl

130 lines
3.2 KiB
Plaintext
Raw Normal View History

2010-08-05 09:20:13 +04:00
#include "idl_types.h"
/*
IDL structures for DNSP structures
See [MS-DNSP].pdf in MCPP for details
*/
import "misc.idl";
/*
note that this is not a real RPC interface. We are just using PIDL
to save us a lot of tedious hand parsing of the dnsRecord
attribute. The uuid is randomly generated.
*/
[
uuid("bdd66e9e-d45f-4202-85c0-6132edc4f30a"),
version(0.0),
pointer_default(unique),
helper("../librpc/ndr/ndr_dnsp.h"),
2010-08-05 09:20:13 +04:00
helpstring("DNSP interfaces")
]
interface dnsp
{
typedef enum {
DNS_TYPE_ZERO = 0x0,
DNS_TYPE_A = 0x1,
DNS_TYPE_NS = 0x2,
DNS_TYPE_MD = 0x3,
DNS_TYPE_MF = 0x4,
DNS_TYPE_CNAME = 0x5,
DNS_TYPE_SOA = 0x6,
DNS_TYPE_MB = 0x7,
DNS_TYPE_MG = 0x8,
DNS_TYPE_MR = 0x9,
DNS_TYPE_NULL = 0xA,
DNS_TYPE_WKS = 0xB,
DNS_TYPE_PTR = 0xC,
DNS_TYPE_HINFO = 0xD,
DNS_TYPE_MINFO = 0xE,
DNS_TYPE_MX = 0xF,
2010-08-13 13:09:09 +04:00
DNS_TYPE_TXT = 0x10,
DNS_TYPE_RP = 0x11,
DNS_TYPE_AFSDB = 0x12,
DNS_TYPE_X25 = 0x13,
DNS_TYPE_ISDN = 0x14,
DNS_TYPE_RT = 0x15,
DNS_TYPE_SIG = 0x18,
DNS_TYPE_KEY = 0x19,
DNS_TYPE_AAAA = 0x1C,
DNS_TYPE_LOC = 0x1D,
DNS_TYPE_NXT = 0x1E,
DNS_TYPE_SRV = 0x21,
DNS_TYPE_ATMA = 0x22,
DNS_TYPE_NAPTR = 0x23,
DNS_TYPE_DNAME = 0x27,
DNS_TYPE_DS = 0x2B,
DNS_TYPE_RRSIG = 0x2E,
DNS_TYPE_NSEC = 0x2F,
DNS_TYPE_DNSKEY= 0x30,
DNS_TYPE_DHCID = 0x31,
DNS_TYPE_ALL = 0xFF,
DNS_TYPE_WINS = 0xFF01,
DNS_TYPE_WINSR = 0xFF02
} dns_record_type;
2010-08-09 09:26:16 +04:00
typedef [public] struct {
uint32 serial;
uint32 refresh;
uint32 retry;
uint32 expire;
uint32 minimum;
dnsp_name mname;
dnsp_name rname;
} dnsp_soa;
2010-08-12 17:46:42 +04:00
typedef [public] struct {
uint16 wPriority;
dnsp_name nameTarget;
} dnsp_mx;
typedef [public] struct {
dnsp_string cpu;
dnsp_string os;
} dnsp_hinfo;
2010-08-09 09:26:16 +04:00
typedef [public] struct {
uint16 wPriority;
uint16 wWeight;
uint16 wPort;
dnsp_name nameTarget;
} dnsp_srv;
typedef [nodiscriminant,gensize] union {
[case(DNS_TYPE_A)] [flag(NDR_BIG_ENDIAN)] ipv4address ipv4;
2010-08-09 09:26:16 +04:00
[case(DNS_TYPE_NS)] dnsp_name ns;
[case(DNS_TYPE_CNAME)] dnsp_name cname;
[case(DNS_TYPE_SOA)] [flag(NDR_BIG_ENDIAN)] dnsp_soa soa;
2010-08-12 17:46:42 +04:00
[case(DNS_TYPE_MX)] [flag(NDR_BIG_ENDIAN)] dnsp_mx mx;
2010-08-13 13:09:09 +04:00
[case(DNS_TYPE_TXT)] dnsp_string txt;
2010-08-09 09:26:16 +04:00
[case(DNS_TYPE_PTR)] dnsp_name ptr;
[case(DNS_TYPE_HINFO)] dnsp_hinfo hinfo;
[case(DNS_TYPE_AAAA)] ipv6address ipv6;
2010-08-09 09:26:16 +04:00
[case(DNS_TYPE_SRV)] [flag(NDR_BIG_ENDIAN)] dnsp_srv srv;
[default] [flag(NDR_REMAINING)] DATA_BLOB data;
} dnsRecordData;
2010-08-05 09:20:13 +04:00
/* this is the format for the dnsRecord attribute in the DNS
partitions in AD */
typedef [public] struct {
[value(ndr_size_dnsRecordData(&data,wType,ndr->flags))] uint16 wDataLength;
dns_record_type wType;
uint32 dwFlags;
uint32 dwSerial;
[flag(NDR_BIG_ENDIAN)] uint32 dwTtlSeconds;
uint32 dwTimeStamp;
uint32 dwReserved;
[switch_is(wType)] dnsRecordData data;
2010-08-05 09:20:13 +04:00
} dnsp_DnssrvRpcRecord;
/*
this is a convenience hook for ndrdump
*/
void decode_DnssrvRpcRecord(
[in] dnsp_DnssrvRpcRecord blob
);
}