[mod-xhtml-neg-cvs] mod_xhtml_neg mod_xhtml_neg.c,1.33,1.34
Brought to you by:
run2000
From: <ru...@us...> - 2004-04-01 11:04:32
|
Update of /cvsroot/mod-xhtml-neg/mod_xhtml_neg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14600 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/mod_xhtml_neg.c,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** mod_xhtml_neg.c 1 Apr 2004 10:27:32 -0000 1.33 --- mod_xhtml_neg.c 1 Apr 2004 10:52:34 -0000 1.34 *************** *** 588,592 **** * request * @param content_rec the accept_rec that matched the content negotiation ! * @return a string that contains a correctly formatted content-type value * @todo should we send the "profile" parameter as well? */ --- 588,593 ---- * request * @param content_rec the accept_rec that matched the content negotiation ! * @return a string that contains a correctly formatted content-type value, ! * or NULL if there is no valid record * @todo should we send the "profile" parameter as well? */ *************** *** 620,624 **** * 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 --- 621,626 ---- * 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 *************** *** 649,654 **** * 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 --- 651,658 ---- * 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 |