summaryrefslogtreecommitdiff
path: root/src/or/relay.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2007-05-25 19:41:31 +0000
committerRoger Dingledine <arma@torproject.org>2007-05-25 19:41:31 +0000
commit0c047b87f5a65fa3e33af0cc45288b3648789cb9 (patch)
tree9618c93ffe6a3595f53e1d199f9bfeafb514065d /src/or/relay.c
parenta19d131ed759a45d484fc11fe9e8d88798f304fa (diff)
downloadtor-0c047b87f5a65fa3e33af0cc45288b3648789cb9.tar.gz
tor-0c047b87f5a65fa3e33af0cc45288b3648789cb9.zip
polish r9933-r9994
svn:r10335
Diffstat (limited to 'src/or/relay.c')
-rw-r--r--src/or/relay.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/relay.c b/src/or/relay.c
index 27661302f3..a1cde2d3d4 100644
--- a/src/or/relay.c
+++ b/src/or/relay.c
@@ -1483,7 +1483,8 @@ circuit_consider_sending_sendme(circuit_t *circ, crypt_path_t *layer_hint)
/** DOCDOC */
static int total_cells_allocated = 0;
-#ifdef ENABLE_CELL_POOL
+#ifdef ENABLE_CELL_POOL /* Defined in ./configure. True by default. */
+/* XXX020 make cell pools the only option once we know they work? -RD */
static mp_pool_t *cell_pool = NULL;
/** Allocate structures to hold cells. */
void
@@ -1678,7 +1679,7 @@ prev_circ_on_conn_p(circuit_t *circ, or_connection_t *conn)
}
/** Add <b>circ</b> to the list of circuits with pending cells on
- * <b>conn</b>. No effect if <b>circ</b> is already unlinked. */
+ * <b>conn</b>. No effect if <b>circ</b> is already unlinked. */
void
make_circuit_active_on_conn(circuit_t *circ, or_connection_t *conn)
{