diff options
author | Vladimír Čunát <vladimir.cunat@nic.cz> | 2020-07-22 15:53:11 +0200 |
---|---|---|
committer | Vladimír Čunát <vladimir.cunat@nic.cz> | 2023-06-12 10:22:45 +0200 |
commit | 8fcbf43c2d6831a76d497e538a2a9c531015276d (patch) | |
tree | 7b08c110bc8ad4b02e712ae4e48ee79115e49fd6 /lib/rplan.h | |
parent | lib/cache pkt_append(): drop unnecessary argument (diff) | |
download | knot-resolver-8fcbf43c2d6831a76d497e538a2a9c531015276d.tar.xz knot-resolver-8fcbf43c2d6831a76d497e538a2a9c531015276d.zip |
lib/cache: improve comments
See NEWS for 4.0.0: "always send DO+CD flags upstream".
Diffstat (limited to 'lib/rplan.h')
-rw-r--r-- | lib/rplan.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rplan.h b/lib/rplan.h index 891781fc..7ae33f21 100644 --- a/lib/rplan.h +++ b/lib/rplan.h @@ -26,7 +26,7 @@ struct kr_qflags { bool AWAIT_IPV6 : 1; /**< Query is waiting for AAAA address. */ bool AWAIT_CUT : 1; /**< Query is waiting for zone cut lookup */ bool NO_EDNS : 1; /**< Don't use EDNS. */ - bool CACHED : 1; /**< Query response is cached. */ + bool CACHED : 1; /**< Query response is cached (or generated locally). */ bool NO_CACHE : 1; /**< No cache for lookup; exception: finding NSs and subqueries. */ bool EXPIRING : 1; /**< Query response is cached but expiring. See is_expiring(). */ bool ALLOW_LOCAL : 1; /**< Allow queries to local or private address ranges. */ |