Fix DNS updater: Keep external TXT records when updating RRSet

This commit is contained in:
Maurus Decimus
2026-05-28 16:23:15 +02:00
parent 57ab6bda0f
commit ae4f21f6f3
4 changed files with 158 additions and 90 deletions

View File

@@ -1185,6 +1185,15 @@ impl DnsUpdater {
Ok(())
}
pub async fn list_rrset(
&self,
origin: &str,
name: &str,
record_type: DnsRecordType,
) -> dns_update::Result<Vec<DnsRecord>> {
self.updater.list_rrset(name, record_type, origin).await
}
pub async fn remove_from_rrset(
&self,
origin: &str,