summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorDouglas Bagnall <douglas.bagnall@catalyst.net.nz>2021-03-24 12:49:22 +1300
committerJeremy Allison <jra@samba.org>2021-03-29 23:20:37 +0000
commit162e6fb25ab9f61b7c1fe69c54dc5e8b17601bcf (patch)
tree8624a0b553669694f1fdc84c1c74cb514abf512e /librpc
parent5f4b73901175a0caedf8f5de7ffda6bb3f2f2a6c (diff)
downloadsamba-162e6fb25ab9f61b7c1fe69c54dc5e8b17601bcf.tar.gz
librpc/idl: dnsp tombstone timestamp name matches MS-DNSP
MS-DNSP uses the term "EntombedTime" in e.g. "2.2.2.2.4.23 DNS_RPC_RECORD_TS" which is more descriptive than the generic "timestamp", and less likely to be confused with dwTimestamp, which has been our curse. Let's make it grep-able, google-able, and evocative. Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r--librpc/idl/dnsp.idl2
-rw-r--r--librpc/idl/dnsserver.idl2
2 files changed, 2 insertions, 2 deletions
diff --git a/librpc/idl/dnsp.idl b/librpc/idl/dnsp.idl
index 2fb45a217a4..2270ed5584c 100644
--- a/librpc/idl/dnsp.idl
+++ b/librpc/idl/dnsp.idl
@@ -200,7 +200,7 @@ interface dnsp
} dnsp_string_list;
typedef [nodiscriminant,gensize] union {
- [case(DNS_TYPE_TOMBSTONE)] NTTIME timestamp;
+ [case(DNS_TYPE_TOMBSTONE)] NTTIME EntombedTime;
[case(DNS_TYPE_A)] [flag(NDR_BIG_ENDIAN)] ipv4address ipv4;
[case(DNS_TYPE_NS)] dnsp_name ns;
[case(DNS_TYPE_CNAME)] dnsp_name cname;
diff --git a/librpc/idl/dnsserver.idl b/librpc/idl/dnsserver.idl
index 50cbfbee90f..59d0a7d358a 100644
--- a/librpc/idl/dnsserver.idl
+++ b/librpc/idl/dnsserver.idl
@@ -118,7 +118,7 @@ import "misc.idl", "dnsp.idl";
DNS_RPC_RECORD_SRV;
typedef [nodiscriminant,gensize,flag(NDR_NOALIGN)] union {
- [case(DNS_TYPE_TOMBSTONE)] NTTIME timestamp;
+ [case(DNS_TYPE_TOMBSTONE)] NTTIME EntombedTime;
[case(DNS_TYPE_A)] [flag(NDR_BIG_ENDIAN)] ipv4address ipv4;
[case(DNS_TYPE_NS)] DNS_RPC_NAME name;
[case(DNS_TYPE_MD)] DNS_RPC_NAME name;