From: Alan T. DeKok Date: Fri, 13 Sep 2019 15:02:07 +0000 (-0400) Subject: fix doxygen X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3bf7616100e3dee7e2c108b5da9fc7856ac80e7d;p=thirdparty%2Ffreeradius-server.git fix doxygen --- diff --git a/src/lib/server/tmpl.c b/src/lib/server/tmpl.c index 870deb8c673..fab687f9bfe 100644 --- a/src/lib/server/tmpl.c +++ b/src/lib/server/tmpl.c @@ -1003,11 +1003,19 @@ finish: } /** Parse a string into a TMPL_TYPE_ATTR_* or #TMPL_TYPE_LIST type #vp_tmpl_t + * + * @param[in,out] ctx to allocate #vp_tmpl_t in. + * @param[out] err May be NULL. Provides the exact error that the parser hit + * when processing the attribute ref. + * @param[out] out Where to write pointer to new #vp_tmpl_t. + * @param[in] name of attribute including #request_ref_t and #pair_list_t qualifiers. + * If only #request_ref_t #pair_list_t qualifiers are found, + * a #TMPL_TYPE_LIST #vp_tmpl_t will be produced. + * @param[in] name_len Length of name, or -1 to do strlen() + * @param[in] rules Rules which control parsing. See tmpl_afrom_attr_substr() for details. * * @note Unlike #tmpl_afrom_attr_substr this function will error out if the entire * name string isn't parsed. - * - * @copydetails tmpl_afrom_attr_substr */ ssize_t tmpl_afrom_attr_str(TALLOC_CTX *ctx, attr_ref_error_t *err, vp_tmpl_t **out, char const *name, vp_tmpl_rules_t const *rules)