summaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@ev0ke.net>2015-06-29 11:12:25 -0400
committerNick Mathewson <nickm@torproject.org>2015-07-09 12:02:12 -0400
commit5fa280f7adaaf9796b93f32327f10d18359e1f95 (patch)
tree648e2f001c9a443421d43afc0d2ffb93de6a4e43 /src/or
parent7657194d77fb5bec5b8e3ef2f4171f5ea54fb519 (diff)
downloadtor-5fa280f7adaaf9796b93f32327f10d18359e1f95.tar.gz
tor-5fa280f7adaaf9796b93f32327f10d18359e1f95.zip
Fix comments in rendservice.c
Signed-off-by: David Goulet <dgoulet@ev0ke.net>
Diffstat (limited to 'src/or')
-rw-r--r--src/or/rendservice.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c
index 85f0fc7772..f4fb860078 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -3438,7 +3438,7 @@ remove_invalid_intro_points(rend_service_t *service,
/* First, make sure we still have a valid circuit for this intro point.
* If we dont, we'll give up on it and make a new one. */
if (intro_circ == NULL) {
- log_info(LD_REND, "Giving up on %s as intro point for %s"
+ log_info(LD_REND, "Attempting to retry on %s as intro point for %s"
" (circuit disappeared).",
safe_str_client(extend_info_describe(intro->extend_info)),
safe_str_client(service->service_id));
@@ -3658,7 +3658,8 @@ rend_services_introduce(void)
safe_str_client(extend_info_describe(intro->extend_info)),
safe_str_client(service->service_id));
/* This funcion will be called again by the main loop so this intro
- * point without a intro circuit will be removed. */
+ * point without a intro circuit will be retried on or removed after
+ * a maximum number of attempts. */
}
}
} SMARTLIST_FOREACH_END(service);