43 lines
1.2 KiB
Diff
43 lines
1.2 KiB
Diff
|
From 20848d8284951481051f6ebdeb8128c05c7e82e2 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
|
||
|
Date: Mon, 11 Nov 2019 16:56:52 +0100
|
||
|
Subject: [PATCH] Move stale_ttl from middle to the end
|
||
|
|
||
|
bind-dyndb-ldap is using rdataset structure. Do not modify its body,
|
||
|
move stale_ttl to the end. Make it binary compatible.
|
||
|
---
|
||
|
lib/dns/include/dns/rdataset.h | 10 +++++-----
|
||
|
1 file changed, 5 insertions(+), 5 deletions(-)
|
||
|
|
||
|
diff --git a/lib/dns/include/dns/rdataset.h b/lib/dns/include/dns/rdataset.h
|
||
|
index 97071ed496..a0c6afe624 100644
|
||
|
--- a/lib/dns/include/dns/rdataset.h
|
||
|
+++ b/lib/dns/include/dns/rdataset.h
|
||
|
@@ -137,11 +137,6 @@ struct dns_rdataset {
|
||
|
dns_rdataclass_t rdclass;
|
||
|
dns_rdatatype_t type;
|
||
|
dns_ttl_t ttl;
|
||
|
- /*
|
||
|
- * Stale ttl is used to see how long this RRset can still be used
|
||
|
- * to serve to clients, after the TTL has expired.
|
||
|
- */
|
||
|
- dns_ttl_t stale_ttl;
|
||
|
dns_trust_t trust;
|
||
|
dns_rdatatype_t covers;
|
||
|
|
||
|
@@ -178,6 +173,11 @@ struct dns_rdataset {
|
||
|
void * private7;
|
||
|
/*@}*/
|
||
|
|
||
|
+ /*
|
||
|
+ * Stale ttl is used to see how long this RRset can still be used
|
||
|
+ * to serve to clients, after the TTL has expired.
|
||
|
+ */
|
||
|
+ dns_ttl_t stale_ttl;
|
||
|
};
|
||
|
|
||
|
/*!
|
||
|
--
|
||
|
2.20.1
|
||
|
|