diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-11-15 09:23:51 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-11-15 09:23:51 -0500 |
commit | 3a7369d0cfa567cdb02063e1dad176c92ef2c7fe (patch) | |
tree | 2a9935d45afaa8914e1c56588eb31a06304b1d0b /src/core | |
parent | 625ad6538248cb2ffba7bc2aebb894e91f1a0872 (diff) | |
download | tor-3a7369d0cfa567cdb02063e1dad176c92ef2c7fe.tar.gz tor-3a7369d0cfa567cdb02063e1dad176c92ef2c7fe.zip |
Doxygen: remove /** and **/ from all .dox files
This is an automatically generated commit, made with:
find src -name '*.dox' | \
xargs perl -i -ne 'print unless (m#^\s*/?\*\*/?\s*$#);'
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/core.dox | 2 | ||||
-rw-r--r-- | src/core/crypto/core_crypto.dox | 2 | ||||
-rw-r--r-- | src/core/mainloop/core_mainloop.dox | 2 | ||||
-rw-r--r-- | src/core/or/core_or.dox | 2 | ||||
-rw-r--r-- | src/core/or/dataflow.dox | 2 | ||||
-rw-r--r-- | src/core/proto/core_proto.dox | 2 |
6 files changed, 0 insertions, 12 deletions
diff --git a/src/core/core.dox b/src/core/core.dox index 11bf55cb78..8ecc43eaae 100644 --- a/src/core/core.dox +++ b/src/core/core.dox @@ -1,4 +1,3 @@ -/** @dir /core @brief core: main loop and onion routing functionality @@ -17,4 +16,3 @@ and one high-level piece: - \refdir{core/or} -- Implements onion routing itself. -**/ diff --git a/src/core/crypto/core_crypto.dox b/src/core/crypto/core_crypto.dox index 28ece92bb8..26ade1f8f8 100644 --- a/src/core/crypto/core_crypto.dox +++ b/src/core/crypto/core_crypto.dox @@ -1,8 +1,6 @@ -/** @dir /core/crypto @brief core/crypto: Tor-specific cryptography This module implements Tor's circuit-construction crypto and Tor's relay crypto. -**/ diff --git a/src/core/mainloop/core_mainloop.dox b/src/core/mainloop/core_mainloop.dox index 28cd42bf60..fee8a8179c 100644 --- a/src/core/mainloop/core_mainloop.dox +++ b/src/core/mainloop/core_mainloop.dox @@ -1,4 +1,3 @@ -/** @dir /core/mainloop @brief core/mainloop: Non-onion-routing mainloop functionality @@ -9,4 +8,3 @@ The layering here is imperfect: the code here was split from \refdir{core/or} without refactoring how the two modules call one another. Probably many functions should be moved and refactored. -**/ diff --git a/src/core/or/core_or.dox b/src/core/or/core_or.dox index 7272f7680a..0b4d430a00 100644 --- a/src/core/or/core_or.dox +++ b/src/core/or/core_or.dox @@ -1,4 +1,3 @@ -/** @dir core/or @brief core/or: **Onion routing happens here!** @@ -61,4 +60,3 @@ encrypt, route, and interpret relay cells. `scheduler.c` : Decides which channel/circuit pair is ready to receive the next cell. -**/ diff --git a/src/core/or/dataflow.dox b/src/core/or/dataflow.dox index 3b32bb30fb..1098701780 100644 --- a/src/core/or/dataflow.dox +++ b/src/core/or/dataflow.dox @@ -1,4 +1,3 @@ -/** @tableofcontents @page dataflow Data flow in the Tor process @@ -235,4 +234,3 @@ queue the next cell. (This logic applies to outgoing relay cells only; incoming relay cells are processed as they arrive.) -**/ diff --git a/src/core/proto/core_proto.dox b/src/core/proto/core_proto.dox index 13ce751a76..ad43bc5846 100644 --- a/src/core/proto/core_proto.dox +++ b/src/core/proto/core_proto.dox @@ -1,8 +1,6 @@ -/** @dir /core/proto @brief core/proto: Protocol encoding/decoding These functions should (but do not always) exist at a lower level than most of the rest of core. -**/ |