Close rogue <b>s

svn:r1838
This commit is contained in:
Nick Mathewson 2004-05-10 07:27:29 +00:00
parent d9fa234fd9
commit 720281b32e
2 changed files with 3 additions and 3 deletions

View File

@ -172,7 +172,7 @@ void buf_free(buf_t *buf) {
tor_free(buf); tor_free(buf);
} }
/** Read from socket <b>s</s>, writing onto end of <b>buf</b>. Read at most /** Read from socket <b>s</b>, writing onto end of <b>buf</b>. Read at most
* <b>at_most</b> bytes, resizing the buffer as necessary. If read() * <b>at_most</b> bytes, resizing the buffer as necessary. If read()
* returns 0, set <b>*reached_eof</b> to 1 and return 0. Return -1 on error; * returns 0, set <b>*reached_eof</b> to 1 and return 0. Return -1 on error;
* else return the number of bytes read. Return 0 if read() would * else return the number of bytes read. Return 0 if read() would

View File

@ -78,7 +78,7 @@ static void rend_service_free_all(void)
rend_service_list = smartlist_create(); rend_service_list = smartlist_create();
} }
/** Validate <b>service<b> and add it to rend_service_list if possible. /** Validate <b>service</b> and add it to rend_service_list if possible.
*/ */
static void add_service(rend_service_t *service) static void add_service(rend_service_t *service)
{ {
@ -894,7 +894,7 @@ rend_service_dump_stats(int severity)
} }
} }
/** Given <b>conn</a>, a rendezvous exit stream, look up the hidden service for /** Given <b>conn</b>, a rendezvous exit stream, look up the hidden service for
* 'circ', and look up the port and address based on conn-\>port. * 'circ', and look up the port and address based on conn-\>port.
* Assign the actual conn-\>addr and conn-\>port. Return -1 if failure, * Assign the actual conn-\>addr and conn-\>port. Return -1 if failure,
* or 0 for success. * or 0 for success.