diff options
author | Roger Dingledine <arma@torproject.org> | 2004-05-10 10:31:48 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-05-10 10:31:48 +0000 |
commit | 83f06dcc9780e75029ffd474d1bd59563b0e35a5 (patch) | |
tree | 57500e1bec1c974514e675bcfc1c3efd13f6afdc /src | |
parent | 3cdf2d67da5f2cd3529ffec9907fa910c0b0208c (diff) | |
download | tor-83f06dcc9780e75029ffd474d1bd59563b0e35a5.tar tor-83f06dcc9780e75029ffd474d1bd59563b0e35a5.tar.gz |
always a bit more
svn:r1844
Diffstat (limited to 'src')
-rw-r--r-- | src/or/or.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/or.h b/src/or/or.h index 9547fcc2c..42ec606ca 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -628,11 +628,11 @@ typedef struct crypt_path_t crypt_path_t; /** Information used to build a circuit. */ typedef struct { - /** intended length of the final circuit. */ + /** Intended length of the final circuit. */ int desired_path_len; - /** nickname of planned exit node. */ + /** Nickname of planned exit node. */ char *chosen_exit; - /** crypt_path_t to append after rendezvous: used for rendezvous. */ + /** The crypt_path_t to append after rendezvous: used for rendezvous. */ struct crypt_path_t *pending_final_cpath; /** How many times has building a circuit for this task failed? */ int failure_count; |