mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 07:07:52 +01:00
Correct documentation comments for fields formerly named accepted_intros
This commit is contained in:
parent
256bcb4755
commit
a2791f43f5
2 changed files with 8 additions and 4 deletions
|
@ -3508,8 +3508,8 @@ typedef struct rend_intro_point_t {
|
||||||
/** (Service side only) A digestmap recording the INTRODUCE2 cells
|
/** (Service side only) A digestmap recording the INTRODUCE2 cells
|
||||||
* this intro point's circuit has received. Each key is the digest
|
* this intro point's circuit has received. Each key is the digest
|
||||||
* of the RSA-encrypted part of a received INTRODUCE2 cell; each
|
* of the RSA-encrypted part of a received INTRODUCE2 cell; each
|
||||||
* value is a pointer to the time_t at which the cell was
|
* value is a pointer to the time_t at which the cell was received.
|
||||||
* received. */
|
* This digestmap is used to prevent replay attacks. */
|
||||||
digestmap_t *accepted_intro_rsa_parts;
|
digestmap_t *accepted_intro_rsa_parts;
|
||||||
|
|
||||||
/** (Service side only) The time at which this intro point was first
|
/** (Service side only) The time at which this intro point was first
|
||||||
|
|
|
@ -89,8 +89,12 @@ typedef struct rend_service_t {
|
||||||
* up-to-date. */
|
* up-to-date. */
|
||||||
time_t next_upload_time; /**< Scheduled next hidden service descriptor
|
time_t next_upload_time; /**< Scheduled next hidden service descriptor
|
||||||
* upload time. */
|
* upload time. */
|
||||||
/** Map from digests of Diffie-Hellman values INTRODUCE2 to time_t of when
|
/** Map from digests of Diffie-Hellman values INTRODUCE2 to time_t
|
||||||
* they were received; used to prevent replays. */
|
* of when they were received. Clients may send INTRODUCE1 cells
|
||||||
|
* for the same rendezvous point through two or more different
|
||||||
|
* introduction points; when they do, this digestmap keeps us from
|
||||||
|
* launching multiple simultaneous attempts to connect to the same
|
||||||
|
* rend point. */
|
||||||
digestmap_t *accepted_intro_dh_parts;
|
digestmap_t *accepted_intro_dh_parts;
|
||||||
/** Time at which we last removed expired values from
|
/** Time at which we last removed expired values from
|
||||||
* accepted_intro_dh_parts. */
|
* accepted_intro_dh_parts. */
|
||||||
|
|
Loading…
Add table
Reference in a new issue