From: Vladimír Čunát Date: Thu, 13 Apr 2017 11:41:48 +0000 (+0200) Subject: ranked_rr_array_entry: update some comments X-Git-Tag: v1.3.0~23^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3356da17e50daab52cb280a6f8d7c505524303a8;p=thirdparty%2Fknot-resolver.git ranked_rr_array_entry: update some comments --- diff --git a/lib/utils.h b/lib/utils.h index 24f652fa7..b846dbdb0 100644 --- a/lib/utils.h +++ b/lib/utils.h @@ -114,11 +114,11 @@ struct kr_context; typedef array_t(knot_rrset_t *) rr_array_t; struct ranked_rr_array_entry { uint32_t qry_uid; - uint8_t rank; /* kr_validation_rank_t */ + uint8_t rank; /**< enum kr_rank */ uint8_t revalidation_cnt; - bool cached; + bool cached; /**< whether it has been stashed to cache already */ bool yielded; - bool to_wire; + bool to_wire; /**< whether to be put into the answer */ knot_rrset_t *rr; }; typedef struct ranked_rr_array_entry ranked_rr_array_entry_t;