diff options
author | Roger Dingledine <arma@torproject.org> | 2005-07-14 08:43:19 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-07-14 08:43:19 +0000 |
commit | 2259032ea1f19966a6ea37f7b55f529dac8f61e4 (patch) | |
tree | aac4359cc5e8a30e0e476b0bf0075752023f719a /src/or/or.h | |
parent | 57ba20e37657157a42d5f46b61fa69cb7fbaf338 (diff) | |
download | tor-2259032ea1f19966a6ea37f7b55f529dac8f61e4.tar tor-2259032ea1f19966a6ea37f7b55f529dac8f61e4.tar.gz |
trivial changes on nick's rendezvous commit
svn:r4553
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/or/or.h b/src/or/or.h index 72b652e8c..aa16547cc 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -767,15 +767,15 @@ typedef struct { char *signing_router; } routerlist_t; -/** Informetation on router used when extending a circuit. (We don't need a +/** Information on router used when extending a circuit. (We don't need a * full routerinfo_t to extend: we only need addr:port:keyid to build an OR * connection, and onion_key to create the onionskin.) */ typedef struct extend_info_t { - char nickname[MAX_HEX_NICKNAME_LEN+1]; /**< This router's nickname for display*/ - char identity_digest[DIGEST_LEN]; /**< Hash of this router's identity key */ - uint32_t addr; /**< IP address in host order */ - uint16_t port; /**< OR port */ - crypto_pk_env_t *onion_key; /**< Current onionskin key */ + char nickname[MAX_HEX_NICKNAME_LEN+1]; /**< This router's nickname for display. */ + char identity_digest[DIGEST_LEN]; /**< Hash of this router's identity key. */ + uint32_t addr; /**< IP address in host order. */ + uint16_t port; /**< OR port. */ + crypto_pk_env_t *onion_key; /**< Current onionskin key. */ } extend_info_t; #define CRYPT_PATH_MAGIC 0x70127012u @@ -1749,12 +1749,12 @@ int rend_client_send_introduction(circuit_t *introcirc, circuit_t *rendcirc); /********************************* rendcommon.c ***************************/ -/** Information used to connect to a hidden service. */ +/** Information used to connect to a hidden service. */ typedef struct rend_service_descriptor_t { crypto_pk_env_t *pk; /**< This service's public key. */ - int version; /**< 0 or 1 */ + int version; /**< 0 or 1. */ time_t timestamp; /**< Time when the descriptor was generated. */ - uint16_t protocols; /**< Bitmask: which rendezvous protocols are supporeted? + uint16_t protocols; /**< Bitmask: which rendezvous protocols are supported? * (We allow bits '0', '1', and '2' to be set.) */ int n_intro_points; /**< Number of introduction points. */ /** Array of n_intro_points elements for this service's introduction points' |