From: Lennart Poettering Date: Tue, 4 Dec 2018 19:40:20 +0000 (+0100) Subject: resolved: rename dns_stream_on_packet() → on_stream_packet() X-Git-Tag: v240~111^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=747a8a74c04f986eb2a1f56829d3b5634d00f56e;p=thirdparty%2Fsystemd.git resolved: rename dns_stream_on_packet() → on_stream_packet() Let's name this similar to on_stream_complete(). Moreover we shouldn't invade dns_stream's namespace if we are a consumer of it. --- diff --git a/src/resolve/resolved-dns-transaction.c b/src/resolve/resolved-dns-transaction.c index e26241754d8..f9b71a35c9a 100644 --- a/src/resolve/resolved-dns-transaction.c +++ b/src/resolve/resolved-dns-transaction.c @@ -530,7 +530,7 @@ static int on_stream_complete(DnsStream *s, int error) { return 0; } -static int dns_stream_on_packet(DnsStream *s) { +static int on_stream_packet(DnsStream *s) { _cleanup_(dns_packet_unrefp) DnsPacket *p = NULL; DnsTransaction *t; @@ -639,7 +639,7 @@ static int dns_transaction_emit_tcp(DnsTransaction *t) { } s->complete = on_stream_complete; - s->on_packet = dns_stream_on_packet; + s->on_packet = on_stream_packet; /* The interface index is difficult to determine if we are * connecting to the local host, hence fill this in right away