[or-cvs] r17689: {tor} Document the purpose argument of circuit_find_to_cannibalize (tor/trunk/src/or)
nickm at seul.org
nickm at seul.org
Thu Dec 18 17:18:18 UTC 2008
Author: nickm
Date: 2008-12-18 12:18:14 -0500 (Thu, 18 Dec 2008)
New Revision: 17689
Modified:
tor/trunk/src/or/circuitlist.c
Log:
Document the purpose argument of circuit_find_to_cannibalize
Modified: tor/trunk/src/or/circuitlist.c
===================================================================
--- tor/trunk/src/or/circuitlist.c 2008-12-18 17:18:06 UTC (rev 17688)
+++ tor/trunk/src/or/circuitlist.c 2008-12-18 17:18:14 UTC (rev 17689)
@@ -866,18 +866,16 @@
* flags in <b>flags</b>, and if info is defined, does not already use info
* as any of its hops; or NULL if no circuit fits this description.
*
+ * The <b>purpose</b> argument (currently ignored) refers to the purpose of
+ * the circuit we want to create, not the purpose of the circuit we want to
+ * cannibalize.
+ *
* If !CIRCLAUNCH_NEED_UPTIME, prefer returning non-uptime circuits.
*/
origin_circuit_t *
circuit_find_to_cannibalize(uint8_t purpose, extend_info_t *info,
int flags)
{
- /* XXXX021 arma: The purpose argument is ignored. Can that possibly be
- * right? */
- /* XXXX <arma> i don't know of any actual bugs that this causes. since i
- * think we only call the function for purposes where we want it to do what
- * the function does. somebody should check this though. */
-
circuit_t *_circ;
origin_circuit_t *best=NULL;
int need_uptime = (flags & CIRCLAUNCH_NEED_UPTIME) != 0;
More information about the tor-commits
mailing list