]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
resolved: comment headers better
authorLennart Poettering <lennart@poettering.net>
Tue, 4 Dec 2018 19:52:43 +0000 (20:52 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 7 Dec 2018 16:16:29 +0000 (17:16 +0100)
src/resolve/resolved-dns-server.h
src/resolve/resolved-dns-stream.h

index fda12510495ad8f1a2335273a27a964a8df0d546..a6022ad97f59d947ca790aad315ef6a757b2a5d9 100644 (file)
@@ -54,6 +54,8 @@ struct DnsServer {
         int ifindex; /* for IPv6 link-local DNS servers */
 
         char *server_string;
+
+        /* The long-lived stream towards this server. */
         DnsStream *stream;
 
 #if ENABLE_DNS_OVER_TLS
index 0d04ae77c49173b319cd6bd23ef295a0c3e9c223..424278ea0a60072eda0a8e9d9ba24d760492de0c 100644 (file)
@@ -59,7 +59,7 @@ struct DnsStream {
 
         LIST_HEAD(DnsTransaction, transactions); /* when used by the transaction logic */
         DnsServer *server;                       /* when used by the transaction logic */
-        DnsQuery *query;             /* when used by the DNS stub logic */
+        DnsQuery *query;                         /* when used by the DNS stub logic */
 
         /* used when DNS-over-TLS is enabled */
         bool encrypted:1;