diff options
author | Tom Gundersen <teg@jklm.no> | 2015-08-22 01:57:58 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2015-08-22 01:57:58 +0200 |
commit | 72aa2c2a2083362afda9f09805563848d54e31df (patch) | |
tree | 418b0e257bec66fc0816bd30800cc9d616206dea /src/resolve/resolved-dns-transaction.h | |
parent | 28b967a87bfa83815ae97e80c02f637a5dd3f454 (diff) | |
parent | 26b1c471cdddedf1bb9aebf10f4c3073bdf7a29e (diff) |
Merge pull request #1010 from poettering/resolved-question-key
only maintain one question RR key per transaction and other fixes
Diffstat (limited to 'src/resolve/resolved-dns-transaction.h')
-rw-r--r-- | src/resolve/resolved-dns-transaction.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resolve/resolved-dns-transaction.h b/src/resolve/resolved-dns-transaction.h index d8a5647609..4db9352a04 100644 --- a/src/resolve/resolved-dns-transaction.h +++ b/src/resolve/resolved-dns-transaction.h @@ -47,7 +47,7 @@ enum DnsTransactionState { struct DnsTransaction { DnsScope *scope; - DnsQuestion *question; + DnsResourceKey *key; DnsTransactionState state; uint16_t id; @@ -84,7 +84,7 @@ struct DnsTransaction { LIST_FIELDS(DnsTransaction, transactions_by_scope); }; -int dns_transaction_new(DnsTransaction **ret, DnsScope *s, DnsQuestion *q); +int dns_transaction_new(DnsTransaction **ret, DnsScope *s, DnsResourceKey *key); DnsTransaction* dns_transaction_free(DnsTransaction *t); void dns_transaction_gc(DnsTransaction *t); |