Minor correction of commentation.

svn:r16958
This commit is contained in:
Karsten Loesing 2008-09-24 17:33:07 +00:00
parent 8dfe8194c9
commit 5f457e4fa6

View File

@ -1051,8 +1051,8 @@ rend_service_introduce(origin_circuit_t *circuit, const char *request,
crypto_digest_get_digest(digest, diffie_hellman_hash, DIGEST_LEN); crypto_digest_get_digest(digest, diffie_hellman_hash, DIGEST_LEN);
crypto_free_digest_env(digest); crypto_free_digest_env(digest);
/* Iterate over past requests, remove those which are older than one hour, /* Check whether there is a past request with the same Diffie-Hellman,
* and check whether there is one with same Diffie-Hellman, part 1. */ * part 1. */
if (!service->accepted_intros) if (!service->accepted_intros)
service->accepted_intros = digestmap_new(); service->accepted_intros = digestmap_new();
@ -1066,8 +1066,9 @@ rend_service_introduce(origin_circuit_t *circuit, const char *request,
goto err; goto err;
} }
/* Add request to access history, including time and hash of /* Add request to access history, including time and hash of Diffie-Hellman,
* Diffie-Hellman, part 1. */ * part 1, and possibly remove requests from the history that are older than
* one hour. */
access_time = tor_malloc(sizeof(time_t)); access_time = tor_malloc(sizeof(time_t));
*access_time = now; *access_time = now;
digestmap_set(service->accepted_intros, diffie_hellman_hash, access_time); digestmap_set(service->accepted_intros, diffie_hellman_hash, access_time);