Improve docs based on Nick's review.

This commit is contained in:
George Kadianakis 2017-07-06 13:37:55 +03:00 committed by Nick Mathewson
parent 9bccc04f8d
commit 91da032e9c
2 changed files with 7 additions and 6 deletions

View File

@ -135,8 +135,7 @@ finalize_rend_circuit(origin_circuit_t *circ, crypt_path_t *hop,
/* All is well. Extend the circuit. */ /* All is well. Extend the circuit. */
hop->state = CPATH_STATE_OPEN; hop->state = CPATH_STATE_OPEN;
/* Set the windows to default. These are the windows that the client thinks /* Set the windows to default. */
* the service has. */
hop->package_window = circuit_initial_package_window(); hop->package_window = circuit_initial_package_window();
hop->deliver_window = CIRCWINDOW_START; hop->deliver_window = CIRCWINDOW_START;

View File

@ -1638,8 +1638,9 @@ typedef struct edge_connection_t {
* an exit)? */ * an exit)? */
rend_data_t *rend_data; rend_data_t *rend_data;
/* Hidden service connection identifier that is which service is being /* Hidden service connection identifier for edge connections. Used by the HS
* queried? */ * client-side code to identify client SOCKS connections and by the
* service-side code to match HS circuits with their streams. */
hs_ident_edge_conn_t *hs_ident; hs_ident_edge_conn_t *hs_ident;
uint32_t address_ttl; /**< TTL for address-to-addr mapping on exit uint32_t address_ttl; /**< TTL for address-to-addr mapping on exit
@ -1792,8 +1793,9 @@ typedef struct dir_connection_t {
/** What rendezvous service are we querying for? */ /** What rendezvous service are we querying for? */
rend_data_t *rend_data; rend_data_t *rend_data;
/* Hidden service connection identifier that is which service is being /* Hidden service connection identifier for dir connections: Used by HS
* queried? */ client-side code to fetch HS descriptors, and by the service-side code to
upload descriptors. */
hs_ident_dir_conn_t *hs_ident; hs_ident_dir_conn_t *hs_ident;
/** If this is a one-hop connection, tracks the state of the directory guard /** If this is a one-hop connection, tracks the state of the directory guard