[mod-xhtml-neg-cvs] mod_xhtml_neg-2.0 mod_xhtml_neg.c,1.19,1.20
Brought to you by:
run2000
From: <ru...@us...> - 2004-04-01 11:03:59
|
Update of /cvsroot/mod-xhtml-neg/mod_xhtml_neg-2.0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14503 Modified Files: mod_xhtml_neg.c Log Message: Move notes in Doxygen comments into @note tags. Index: mod_xhtml_neg.c =================================================================== RCS file: /cvsroot/mod-xhtml-neg/mod_xhtml_neg-2.0/mod_xhtml_neg.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** mod_xhtml_neg.c 1 Apr 2004 10:28:17 -0000 1.19 --- mod_xhtml_neg.c 1 Apr 2004 10:52:02 -0000 1.20 *************** *** 623,627 **** * The hash function is a hash in the public domain by By Bob Jenkins. See * lookupa.c or http://burtleburtle.net/bob/hash/doobs.html for details. ! * Note that since we're only using this algorithm for Etag uniqueness rather * than for a hashtable lookup, DoS attacks such as those described in * http://www.cs.rice.edu/~scrosby/hash/ are not an issue here, especially --- 623,628 ---- * The hash function is a hash in the public domain by By Bob Jenkins. See * lookupa.c or http://burtleburtle.net/bob/hash/doobs.html for details. ! * ! * @note Since we're only using this algorithm for Etag uniqueness rather * than for a hashtable lookup, DoS attacks such as those described in * http://www.cs.rice.edu/~scrosby/hash/ are not an issue here, especially *************** *** 652,657 **** * Make an accept_rec with an explicit charset. If the record already * contains a charset parameter, it is returned as-is. Otherwise, the ! * parameter default_charset is used. Note that default_charset can be ! * NULL, in which case charset will be set to the empty string. * * @param p a memory pool from which we can allocate temporary memory for this --- 653,660 ---- * Make an accept_rec with an explicit charset. If the record already * contains a charset parameter, it is returned as-is. Otherwise, the ! * parameter default_charset is used. ! * ! * @note default_charset can be NULL, in which case charset will be set to ! * the empty string. * * @param p a memory pool from which we can allocate temporary memory for this *************** *** 1285,1289 **** * here. This is mainly setup, control flow and logging going on here. * ! * Note that due to the way we hook into the Apache handler system means * we always return DECLINED, even though handling was a success. * We do this so that the default handler will always run, and so that --- 1288,1292 ---- * here. This is mainly setup, control flow and logging going on here. * ! * @note Due to the way we hook into the Apache handler system means * we always return DECLINED, even though handling was a success. * We do this so that the default handler will always run, and so that |