diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-12-10 11:25:26 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-12-10 11:35:52 +0100 |
commit | c842ff2488456f503db365430592d02b8c251fa5 (patch) | |
tree | 02301cee8a5382c29a8ba972712841960c94e81a | |
parent | f649045c10ace1b49cb6fbefdc33747a1aab28bc (diff) |
resolved: rename dns_transaction_prepare_next_attempt()
Let's simply call it dns_transaction_prepare(), so that we have the nice
cycle for prepare() → go() → emit() → process().
After all it's pretty clear that what we prepare there, and we dont call
the others go_next_attempt(), emit_next_attempt() or
process_next_attempt().
-rw-r--r-- | src/resolve/resolved-dns-transaction.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resolve/resolved-dns-transaction.c b/src/resolve/resolved-dns-transaction.c index 1dcd2c78c0..efed761001 100644 --- a/src/resolve/resolved-dns-transaction.c +++ b/src/resolve/resolved-dns-transaction.c @@ -744,7 +744,7 @@ static usec_t transaction_get_resend_timeout(DnsTransaction *t) { } } -static int dns_transaction_prepare_next_attempt(DnsTransaction *t, usec_t ts) { +static int dns_transaction_prepare(DnsTransaction *t, usec_t ts) { bool had_stream; int r; @@ -894,7 +894,7 @@ static int dns_transaction_make_packet_mdns(DnsTransaction *t) { if (r < 0) return r; - r = dns_transaction_prepare_next_attempt(other, ts); + r = dns_transaction_prepare(other, ts); if (r <= 0) continue; @@ -977,7 +977,7 @@ int dns_transaction_go(DnsTransaction *t) { assert_se(sd_event_now(t->scope->manager->event, clock_boottime_or_monotonic(), &ts) >= 0); - r = dns_transaction_prepare_next_attempt(t, ts); + r = dns_transaction_prepare(t, ts); if (r <= 0) return r; |