]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Do not treat "DOCDOC" as doxygen.
authorNick Mathewson <nickm@torproject.org>
Sat, 26 Mar 2016 14:11:45 +0000 (10:11 -0400)
committerNick Mathewson <nickm@torproject.org>
Sat, 26 Mar 2016 14:11:45 +0000 (10:11 -0400)
14 files changed:
src/common/crypto_curve25519.c
src/common/sandbox.c
src/common/sandbox.h
src/or/channel.c
src/or/channel.h
src/or/circuituse.c
src/or/connection_edge.c
src/or/connection_or.h
src/or/ext_orport.c
src/or/or.h
src/or/relay.c
src/or/rendcache.c
src/or/routerkeys.c
src/or/routerlist.c

index baa573b0dc4459d0bf953b5e6e561dd4d8b37a97..57c878b79a82553029e19491a257207ec4ce787a 100644 (file)
@@ -157,7 +157,7 @@ curve25519_keypair_generate(curve25519_keypair_t *keypair_out,
   return 0;
 }
 
-/** DOCDOC */
+/* DOCDOC */
 int
 curve25519_keypair_write_to_file(const curve25519_keypair_t *keypair,
                                  const char *fname,
@@ -180,7 +180,7 @@ curve25519_keypair_write_to_file(const curve25519_keypair_t *keypair,
   return r;
 }
 
-/** DOCDOC */
+/* DOCDOC */
 int
 curve25519_keypair_read_from_file(curve25519_keypair_t *keypair_out,
                                   char **tag_out,
index 96429ce5aa51a808efbb00c214d7161d05423cb7..70c5bbd07c387d762c91b41107921b56375d4564 100644 (file)
@@ -1082,7 +1082,7 @@ sandbox_intern_string(const char *str)
   return str;
 }
 
-/** DOCDOC */
+/* DOCDOC */
 static int
 prot_strings_helper(strmap_t *locations,
                     char **pr_mem_next_p,
index 4918ad047b97c9ce33488bcc01cd918d7678b15a..2defd8bbd4fc768492803c6fc154e5a9ac7d2cf1 100644 (file)
@@ -152,7 +152,7 @@ int sandbox_cfg_allow_open_filename(sandbox_cfg_t **cfg, char *file);
 int sandbox_cfg_allow_chmod_filename(sandbox_cfg_t **cfg, char *file);
 int sandbox_cfg_allow_chown_filename(sandbox_cfg_t **cfg, char *file);
 
-/**DOCDOC*/
+/* DOCDOC */
 int sandbox_cfg_allow_rename(sandbox_cfg_t **cfg, char *file1, char *file2);
 
 /**
index 519d10641ab1ad197d5f279c7b6f860aa4ca5300..5f69a0864b728fdf3753563639489ba40cdcee9c 100644 (file)
@@ -2868,7 +2868,7 @@ channel_assert_counter_consistency(void)
       (n_channel_bytes_in_queues + n_channel_bytes_passed_to_lower_layer));
 }
 
-/** DOCDOC */
+/* DOCDOC */
 static int
 is_destroy_cell(channel_t *chan,
                 const cell_queue_entry_t *q, circid_t *circid_out)
index 1fb431015d0ec5f62bfb32079bb3b5becef88bbf..129c0c2013ed5473103269d7876e77145cd7eca4 100644 (file)
@@ -182,7 +182,7 @@ struct channel_s {
    * space should we use?
    */
   circ_id_type_bitfield_t circ_id_type:2;
-  /** DOCDOC*/
+  /* DOCDOC */
   unsigned wide_circ_ids:1;
 
   /** For how many circuits are we n_chan?  What about p_chan? */
index 64fcc30057a93b89edf27e70dbeeb67de4fc3489..31003ea095884039adc73142390743b3fd34bf3b 100644 (file)
@@ -1674,7 +1674,7 @@ circuit_launch(uint8_t purpose, int flags)
   return circuit_launch_by_extend_info(purpose, NULL, flags);
 }
 
-/** DOCDOC */
+/* DOCDOC */
 static int
 have_enough_path_info(int need_exit)
 {
index f680e1da83b4a89cd3101d5441e0c1df241b5543..754e9762ea169ded2a4e84c72a024a414dc35505 100644 (file)
@@ -904,7 +904,7 @@ connection_ap_mark_as_non_pending_circuit(entry_connection_t *entry_conn)
   smartlist_remove(pending_entry_connections, entry_conn);
 }
 
-/** DOCDOC */
+/* DOCDOC */
 void
 connection_ap_warn_and_unmark_if_pending_circ(entry_connection_t *entry_conn,
                                               const char *where)
index 53e1f96879999883cbede3cae9f4d87e5821ea77..e2ec47a4f29d601f818514c17cf092de44f5b5c7 100644 (file)
@@ -100,7 +100,7 @@ var_cell_t *var_cell_new(uint16_t payload_len);
 var_cell_t *var_cell_copy(const var_cell_t *src);
 void var_cell_free(var_cell_t *cell);
 
-/** DOCDOC */
+/* DOCDOC */
 #define MIN_LINK_PROTO_FOR_WIDE_CIRC_IDS 4
 
 #endif
index 584abf61fd4fd8be17de767d51132306031133c3..aa1b3e26fe711ff1fa664d3ea69178c289ff17ed 100644 (file)
@@ -178,7 +178,7 @@ connection_ext_or_auth_neg_auth_type(connection_t *conn)
   return 1;
 }
 
-/** DOCDOC */
+/* DOCDOC */
 STATIC int
 handle_client_auth_nonce(const char *client_nonce, size_t client_nonce_len,
                          char **client_hash_out,
index 301901e71c4be3be5ef3d6245c1bd2e1b172791e..111d0981d5f9a41eeb8ef984f733b4484bf8ff46 100644 (file)
@@ -1358,7 +1358,7 @@ typedef struct listener_connection_t {
  * in the v3 handshake.  The subject key must be a 1024-bit RSA key; it
  * must be signed by the identity key */
 #define OR_CERT_TYPE_AUTH_1024 3
-/** DOCDOC */
+/* DOCDOC */
 #define OR_CERT_TYPE_RSA_ED_CROSSCERT 7
 /**@}*/
 
@@ -3789,7 +3789,7 @@ typedef struct {
                              * and try a new circuit if the stream has been
                              * waiting for this many seconds. If zero, use
                              * our default internal timeout schedule. */
-  int MaxOnionQueueDelay; /**<DOCDOC*/
+  int MaxOnionQueueDelay; /*< DOCDOC */
   int NewCircuitPeriod; /**< How long do we use a circuit before building
                          * a new one? */
   int MaxCircuitDirtiness; /**< Never use circs that were first used more than
index 7022c4b37aff3859b0c03394605ec7d0895f99d8..fb8c8e74d6f46a914cab73b1460eca5d27c18ba9 100644 (file)
@@ -2374,7 +2374,7 @@ packed_cell_mem_cost(void)
   return sizeof(packed_cell_t);
 }
 
-/** DOCDOC */
+/* DOCDOC */
 STATIC size_t
 cell_queues_get_total_allocation(void)
 {
index 8b2d3ce6f7740ddf067f7b338813586ac43878f5..f8206cd53b23890371781fe9f40d3ec42c6e8986 100644 (file)
@@ -53,7 +53,7 @@ STATIC digestmap_t *rend_cache_v2_dir = NULL;
  * only rely on the usability of intro points from an internal state. */
 STATIC strmap_t *rend_cache_failure = NULL;
 
-/** DOCDOC */
+/* DOCDOC */
 STATIC size_t rend_cache_total_allocation = 0;
 
 /** Initializes the service descriptor cache.
@@ -78,7 +78,7 @@ rend_cache_entry_allocation(const rend_cache_entry_t *e)
   return sizeof(*e) + e->len + sizeof(*e->parsed);
 }
 
-/** DOCDOC */
+/* DOCDOC */
 size_t
 rend_cache_get_total_allocation(void)
 {
index 34e9fc58eecea2d05daa378b3eeaa1301f2db273..efb3cbb571daa1f6da4edda287a168b3315ba036 100644 (file)
@@ -923,7 +923,7 @@ load_ed_keys(const or_options_t *options, time_t now)
   return -1;
 }
 
-/**DOCDOC*/
+/* DOCDOC */
 int
 generate_ed_link_cert(const or_options_t *options, time_t now)
 {
index 31da56129157c38a93f12619d53c591ec9893cd2..3c9023e8f0dc578c9b00cbcb8143748cbbaf3656 100644 (file)
@@ -662,7 +662,7 @@ static const char *BAD_SIGNING_KEYS[] = {
   NULL,
 };
 
-/** DOCDOC */
+/* DOCDOC */
 int
 authority_cert_is_blacklisted(const authority_cert_t *cert)
 {