diff options
author | Roger Dingledine <arma@torproject.org> | 2007-02-06 02:49:07 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-02-06 02:49:07 +0000 |
commit | 4ba57f68e4288969226e2e3f21922e1bf338f6f1 (patch) | |
tree | 4c1947283a4892d9ce3f7d6aa5104ad7e1f1a990 /src | |
parent | bbfb6508e7297021d1734754de055cf8810c268d (diff) | |
download | tor-4ba57f68e4288969226e2e3f21922e1bf338f6f1.tar.gz tor-4ba57f68e4288969226e2e3f21922e1bf338f6f1.zip |
more changes. i'm all caught up now.
svn:r9495
Diffstat (limited to 'src')
-rw-r--r-- | src/common/crypto.c | 2 | ||||
-rw-r--r-- | src/or/circuitlist.c | 6 | ||||
-rw-r--r-- | src/or/connection_edge.c | 8 | ||||
-rw-r--r-- | src/or/control.c | 18 | ||||
-rw-r--r-- | src/or/or.h | 4 | ||||
-rw-r--r-- | src/or/routerlist.c | 5 |
6 files changed, 23 insertions, 20 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c index 5f023fa166..09d7b2d83f 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -550,7 +550,7 @@ crypto_pk_read_public_key_from_string(crypto_pk_env_t *env, const char *src, return 0; } -/** Write the private key from 'env' into the file named by 'fname', +/** Write the private key from <b>env</b> into the file named by <b>fname</b>, * PEM-encoded. Return 0 on success, -1 on failure. */ int diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index ce8ba5f73a..acbea47487 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -218,7 +218,7 @@ circuit_get_all_pending_on_or_conn(smartlist_t *out, or_connection_t *or_conn) } /** Return the number of circuits in state OR_WAIT, waiting for the given - * connection. */ + * connection. */ int circuit_count_pending_on_or_conn(or_connection_t *or_conn) { @@ -676,7 +676,7 @@ circuit_get_by_rend_query_and_purpose(const char *rend_query, uint8_t purpose) } /** Return the first circuit originating here in global_circuitlist after - * <b>start</b> whose purpose is <b>purpose</b> is purpose, and where + * <b>start</b> whose purpose is <b>purpose</b>, and where * <b>digest</b> (if set) matches the rend_pk_digest field. Return NULL if no * circuit is found. If <b>start</b> is NULL, begin at the start of the list. */ @@ -707,7 +707,7 @@ circuit_get_next_by_pk_and_purpose(origin_circuit_t *start, /** Return the first OR circuit in the global list whose purpose is * <b>purpose</b>, and whose rend_token is the <b>len</b>-byte - * <b>token</b>. */ + * <b>token</b>. */ static or_circuit_t * circuit_get_by_rend_token_and_purpose(uint8_t purpose, const char *token, size_t len) diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 17feaf44bc..21143ac09d 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -712,8 +712,8 @@ addressmap_rewrite(char *address, size_t maxlen) } /** If we have a cached reverse DNS entry for the address stored in the - * <b>maxlen</b>-byte buffer <b>address</b> (typically, a dotted quad) with - * the cached value and return 1. Otherwise return 0. */ + * <b>maxlen</b>-byte buffer <b>address</b> (typically, a dotted quad) then + * rewrite to the cached value and return 1. Otherwise return 0. */ static int addressmap_rewrite_reverse(char *address, size_t maxlen) { @@ -2021,8 +2021,8 @@ connection_ap_handshake_socks_resolved(edge_connection_t *conn, * * If <b>reply</b> is defined, then write <b>replylen</b> bytes of it to conn * and return, else reply based on <b>endreason</b> (one of - * END_STREAM_REASON_*). If <b>reply</b> is undefined, <b>endreason</b> can't 0 - * or REASON_DONE. Send endreason to the controller, if appropriate. + * END_STREAM_REASON_*). If <b>reply</b> is undefined, <b>endreason</b> can't + * be 0 or REASON_DONE. Send endreason to the controller, if appropriate. */ void connection_ap_handshake_socks_reply(edge_connection_t *conn, char *reply, diff --git a/src/or/control.c b/src/or/control.c index c7ee25b8cb..cbea14f22c 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -635,10 +635,10 @@ send_control0_event(uint16_t event, uint32_t len, const char *body) * * If <b>which</b> & SHORT_NAMES, the event contains short-format names: send * it to controllers that haven't enabled the VERBOSE_NAMES feature. If - * <b>which</b> & LONG_NAMES, the event contains long-format names: sent it + * <b>which</b> & LONG_NAMES, the event contains long-format names: send it * to contollers that <em>have</em> enabled VERBOSE_NAMES. * - * The EXTENDED_FORMAT and NONEXTENDED_FORMAT flags behaves similarly with + * The EXTENDED_FORMAT and NONEXTENDED_FORMAT flags behave similarly with * respect to the EXTENDED_EVENTS feature. */ static void send_control1_event_string(uint16_t event, event_format_t which, @@ -3136,7 +3136,7 @@ write_stream_target_to_buf(edge_connection_t *conn, char *buf, size_t len) } /** Convert the reason for ending a stream <b>reason</b> into the format used - * in STREAM events. Return NULL if the reason is unrecognized.*/ + * in STREAM events. Return NULL if the reason is unrecognized. */ static const char * stream_end_reason_to_string(int reason) { @@ -3663,9 +3663,9 @@ control_event_my_descriptor_changed(void) return 0; } -/** Helper: sents a status event where <b>type</b> is one of +/** Helper: sends a status event where <b>type</b> is one of * EVENT_STATUS_{GENERAL,CLIENT,SERVER}, where <b>severity</b> is one of - * LOG_{NOTICE,WARN,ERR}, and where <b>format</b> is a print-style format + * LOG_{NOTICE,WARN,ERR}, and where <b>format</b> is a printf-style format * string corresponding to <b>args</b>. */ static int control_event_status(int type, int severity, const char *format, va_list args) @@ -3712,7 +3712,7 @@ control_event_status(int type, int severity, const char *format, va_list args) } /** Format and send an EVENT_STATUS_GENERAL event whose main text is obtained - * by formatting the arguments using the printf-style <b>format</b> */ + * by formatting the arguments using the printf-style <b>format</b>. */ int control_event_general_status(int severity, const char *format, ...) { @@ -3728,7 +3728,7 @@ control_event_general_status(int severity, const char *format, ...) } /** Format and send an EVENT_STATUS_CLIENT event whose main text is obtained - * by formatting the arguments using the printf-style <b>format</b> */ + * by formatting the arguments using the printf-style <b>format</b>. */ int control_event_client_status(int severity, const char *format, ...) { @@ -3744,7 +3744,7 @@ control_event_client_status(int severity, const char *format, ...) } /** Format and send an EVENT_STATUS_SERVER event whose main text is obtained - * by formatting the arguments using the printf-style <b>format</b> */ + * by formatting the arguments using the printf-style <b>format</b>. */ int control_event_server_status(int severity, const char *format, ...) { @@ -3761,7 +3761,7 @@ control_event_server_status(int severity, const char *format, ...) /** Called when the status of an entry guard with the given <b>nickname</b> * and identity <b>digest</b> has changed to <b>status</b>: tells any - * controllers that care. */ + * controllers that care. */ int control_event_guard(const char *nickname, const char *digest, const char *status) diff --git a/src/or/or.h b/src/or/or.h index e9c46468f6..26998c272d 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -606,11 +606,11 @@ typedef enum { /** How long to test reachability before complaining to the user. */ #define TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT (20*60) -/** legal characters in a nickname */ +/** Legal characters in a nickname. */ #define LEGAL_NICKNAME_CHARACTERS \ "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -/** Name to use in client TLS certificates if no nickname is given.*/ +/** Name to use in client TLS certificates if no nickname is given. */ #define DEFAULT_CLIENT_NICKNAME "client" /** DOCDOC */ diff --git a/src/or/routerlist.c b/src/or/routerlist.c index ff868823f3..98e37788f0 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -981,7 +981,10 @@ smartlist_choose_by_bandwidth(smartlist_t *sl, int for_exit, int statuses) this_bw = (uint32_t)(partial/i); /*XXXX012 The above calculation is an awful hack, and makes our * algorithm hard to describe sanely. Could we do better with a second - * pass through the list? -NM */ + * pass through the list? -NM + * Sure, fine by me. I fear this thing becoming too intensive, + * but nobody has mentioned it in profiling yet. -RD + */ } } else { router = smartlist_get(sl, i); |