[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r14447: Fix doxygen comments to not use <> for metavars since they h (tor/trunk/src/or)
Author: weasel
Date: 2008-04-24 11:39:01 -0400 (Thu, 24 Apr 2008)
New Revision: 14447
Modified:
tor/trunk/src/or/directory.c
Log:
Fix doxygen comments to not use <> for metavars since they have to be valid HTML
Modified: tor/trunk/src/or/directory.c
===================================================================
--- tor/trunk/src/or/directory.c 2008-04-24 15:38:57 UTC (rev 14446)
+++ tor/trunk/src/or/directory.c 2008-04-24 15:39:01 UTC (rev 14447)
@@ -777,7 +777,7 @@
*
* This url depends on whether or not the server we go to
* is sufficiently new to support conditional consensus downloading,
- * i.e. GET .../consensus/<fpr>+<fpr>+<fpr>
+ * i.e. GET .../consensus/<b>fpr</b>+<b>fpr</b>+<b>fpr</b>
*/
#define CONDITIONAL_CONSENSUS_FPR_LEN 3
#if (CONDITIONAL_CONSENSUS_FPR_LEN > DIGEST_LEN)
@@ -2231,9 +2231,10 @@
/** Decide whether a client would accept the consensus we have
*
* Clients can say they only want a consensus if it's signed by more
- * than half the authorities in <list>. They pass this list in
- * the url as ..consensus/<fpr>+<fpr>+<fpr>
- * <fpr> may be an abbreviated fingerprint, i.e. only a left substring
+ * than half the authorities in a list. They pass this list in
+ * the url as "...consensus/<b>fpr</b>+<b>fpr</b>+<b>fpr</b>".
+ *
+ * <b>fpr<b/> may be an abbreviated fingerprint, i.e. only a left substring
* of the full authority identity digest. (Only strings of even length,
* i.e. encodings of full bytes, are handled correctly. In the case
* of an odd number of hex digits the last one is silently ignored.)