mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Doxygen: fix warnings about mismatched HTML tags.
This commit is contained in:
@@ -39,7 +39,7 @@ static const int MAX_INTERVAL = 10 * 365 * 86400;
|
||||
|
||||
/**
|
||||
* Global list of periodic events that have been registered with
|
||||
* <b>periodic_event_register</a>.
|
||||
* <b>periodic_event_register</b>.
|
||||
**/
|
||||
static smartlist_t *the_periodic_events = NULL;
|
||||
|
||||
|
||||
@@ -1038,7 +1038,7 @@ get_max_sample_size(guard_selection_t *gs,
|
||||
* Return a smartlist of the all the guards that are not currently
|
||||
* members of the sample (GUARDS - SAMPLED_GUARDS). The elements of
|
||||
* this list are node_t pointers in the non-bridge case, and
|
||||
* bridge_info_t pointers in the bridge case. Set *<b>n_guards_out/b>
|
||||
* bridge_info_t pointers in the bridge case. Set *<b>n_guards_out</b>
|
||||
* to the number of guards that we found in GUARDS, including those
|
||||
* that were already sampled.
|
||||
*/
|
||||
|
||||
@@ -1293,7 +1293,7 @@ typedef struct compressed_result_t {
|
||||
|
||||
/**
|
||||
* Compress the bytestring <b>input</b> of length <b>len</b> using the
|
||||
* <n>n_methods</b> compression methods listed in the array <b>methods</b>.
|
||||
* <b>n_methods</b> compression methods listed in the array <b>methods</b>.
|
||||
*
|
||||
* For each successful compression, set the fields in the <b>results_out</b>
|
||||
* array in the position corresponding to the compression method. Use
|
||||
|
||||
@@ -570,7 +570,7 @@ find_next_router_line(const smartlist_t *cons,
|
||||
/** Pre-process a consensus in <b>cons</b> (represented as a list of cdline_t)
|
||||
* to remove the signatures from it. If the footer is removed, return a
|
||||
* cdline_t containing a delete command to delete the footer, allocated in
|
||||
* <b>area</>. If no footer is removed, return NULL.
|
||||
* <b>area</b>. If no footer is removed, return NULL.
|
||||
*
|
||||
* We remove the signatures here because they are not themselves signed, and
|
||||
* as such there might be different encodings for them.
|
||||
|
||||
@@ -164,7 +164,7 @@ microdesc_extract_body(microdesc_t *md,
|
||||
|
||||
/**
|
||||
* Parse a microdescriptor which begins at <b>s</b> and ends at
|
||||
* <b>start_of_next_microdesc. Store its fields into <b>md</b>. Use
|
||||
* <b>start_of_next_microdesc</b>. Store its fields into <b>md</b>. Use
|
||||
* <b>where</b> for generating log information. If <b>allow_annotations</b>
|
||||
* is true, then one or more annotations may precede the microdescriptor body
|
||||
* proper. Use <b>area</b> for memory management, clearing it when done.
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
/** Try to read an RSA key from <b>fname</b>. If <b>fname</b> doesn't exist
|
||||
* and <b>generate</b> is true, create a new RSA key and save it in
|
||||
* <b>fname</b>. Return the read/created key, or NULL on error. Log all
|
||||
* errors at level <b>severity</b>. If <b>created_out/b> is non-NULL and a
|
||||
* errors at level <b>severity</b>. If <b>created_out</b> is non-NULL and a
|
||||
* new key was created, set *<b>created_out</b> to true.
|
||||
*/
|
||||
crypto_pk_t *
|
||||
|
||||
@@ -103,7 +103,7 @@ crypto_validate_dh_params(const BIGNUM *p, const BIGNUM *g)
|
||||
#endif /* 0 */
|
||||
|
||||
/**
|
||||
* Helper: convert <b>hex<b> to a bignum, and return it. Assert that the
|
||||
* Helper: convert <b>hex</b> to a bignum, and return it. Assert that the
|
||||
* operation was successful.
|
||||
*/
|
||||
static BIGNUM *
|
||||
|
||||
@@ -42,7 +42,7 @@ pem_encoded_size(size_t src_len, const char *objtype)
|
||||
|
||||
/**
|
||||
* PEM-encode the <b>srclen</b>-byte object at <b>src</b> into the
|
||||
* <b>destlen<\b>-byte buffer at <b>dest</b>, tagging it with <b>objtype</b>.
|
||||
* <b>destlen</b>-byte buffer at <b>dest</b>, tagging it with <b>objtype</b>.
|
||||
* Return 0 on success and -1 on failure.
|
||||
*/
|
||||
int
|
||||
|
||||
@@ -422,7 +422,7 @@ mainloop_event_activate(mainloop_event_t *event)
|
||||
*
|
||||
* If the event is scheduled for a different time, cancel it and run
|
||||
* after this delay instead. If the event is currently pending to run
|
||||
* <em>now</b>, has no effect.
|
||||
* <b>now</b>, has no effect.
|
||||
*
|
||||
* Do not call this function with <b>tv</b> == NULL -- use
|
||||
* mainloop_event_activate() instead.
|
||||
|
||||
@@ -2001,7 +2001,7 @@ tor_addr_port_new(const tor_addr_t *addr, uint16_t port)
|
||||
return ap;
|
||||
}
|
||||
|
||||
/** Return true iff <a>a</b> and <b>b</b> are the same address and port */
|
||||
/** Return true iff <b>a</b> and <b>b</b> are the same address and port */
|
||||
int
|
||||
tor_addr_port_eq(const tor_addr_port_t *a,
|
||||
const tor_addr_port_t *b)
|
||||
|
||||
Reference in New Issue
Block a user