summaryrefslogtreecommitdiff
path: root/src/or/or.h
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2007-01-03 10:30:26 +0000
committerRoger Dingledine <arma@torproject.org>2007-01-03 10:30:26 +0000
commit50e36dc11b47dc96151cb345eb5e4fcbe14b465c (patch)
treed3056ce6d68fc03a4c4604d7cddcb792bcf05e82 /src/or/or.h
parentd677332a83dfb04e998b50daffa822c59b380a4f (diff)
downloadtor-50e36dc11b47dc96151cb345eb5e4fcbe14b465c.tar.gz
tor-50e36dc11b47dc96151cb345eb5e4fcbe14b465c.zip
more cleanups, including a shiny new XXX012
svn:r9250
Diffstat (limited to 'src/or/or.h')
-rw-r--r--src/or/or.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/or/or.h b/src/or/or.h
index 6ee3f522e1..ce4dcb9564 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -1014,7 +1014,7 @@ typedef struct routerstatus_t {
* an exit node. */
/** True iff we know version info for this router. (i.e., a "v" entry was
- * included.) We'll replace all these with a big tor_vesion_t or a char[]
+ * included.) We'll replace all these with a big tor_version_t or a char[]
* if the number of traits we care about ever becomes incredibly big. */
unsigned int version_known:1;
/** True iff this router is a version that supports BEGIN_DIR cells. */
@@ -2699,11 +2699,11 @@ void router_free_all(void);
typedef struct trusted_dir_server_t {
char *description;
char *nickname;
- char *address; /**< Hostname */
- uint32_t addr; /**< IPv4 address */
- uint16_t dir_port; /**< Directory port */
- uint16_t or_port; /**< OR port: Used for tunneling connections */
- char digest[DIGEST_LEN]; /**< Digest of identity key */
+ char *address; /**< Hostname. */
+ uint32_t addr; /**< IPv4 address. */
+ uint16_t dir_port; /**< Directory port. */
+ uint16_t or_port; /**< OR port: Used for tunneling connections. */
+ char digest[DIGEST_LEN]; /**< Digest of identity key. */
unsigned int is_running:1; /**< True iff we think this server is running. */
/** True iff this server is an authority for the older ("v1") directory
* protocol. */