diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-10-26 11:13:29 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-10-26 11:39:17 -0400 |
commit | 5f299feb8270c07a9c675a83a56e6f027a07f005 (patch) | |
tree | c5a9b00171561f4d5741ad4b4fb5af6e56b1705e | |
parent | ff7a70ca09be4f985b14b307d7eac869dfbf933f (diff) | |
download | tor-5f299feb8270c07a9c675a83a56e6f027a07f005.tar.gz tor-5f299feb8270c07a9c675a83a56e6f027a07f005.zip |
doxygen: add @file declarations for src/core/crypto
If a file doesn't use the file command (either \file or @file),
Doxygen won't try to process it.
-rw-r--r-- | src/core/crypto/hs_ntor.h | 5 | ||||
-rw-r--r-- | src/core/crypto/onion_ntor.h | 5 | ||||
-rw-r--r-- | src/core/crypto/relay_crypto.c | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/src/core/crypto/hs_ntor.h b/src/core/crypto/hs_ntor.h index e5a5171915..5a70974a0c 100644 --- a/src/core/crypto/hs_ntor.h +++ b/src/core/crypto/hs_ntor.h @@ -1,6 +1,11 @@ /* Copyright (c) 2017-2019, The Tor Project, Inc. */ /* See LICENSE for licensing information */ +/** + * @file hs_ntor.h + * @brief Header for hs_ntor.c + **/ + #ifndef TOR_HS_NTOR_H #define TOR_HS_NTOR_H diff --git a/src/core/crypto/onion_ntor.h b/src/core/crypto/onion_ntor.h index 51e72b4083..ea504c1050 100644 --- a/src/core/crypto/onion_ntor.h +++ b/src/core/crypto/onion_ntor.h @@ -1,6 +1,11 @@ /* Copyright (c) 2012-2019, The Tor Project, Inc. */ /* See LICENSE for licensing information */ +/** + * @file onion_ntor.h + * @brief Header for onion_ntor.c + **/ + #ifndef TOR_ONION_NTOR_H #define TOR_ONION_NTOR_H diff --git a/src/core/crypto/relay_crypto.c b/src/core/crypto/relay_crypto.c index 8a285131a8..3213e6a476 100644 --- a/src/core/crypto/relay_crypto.c +++ b/src/core/crypto/relay_crypto.c @@ -4,6 +4,11 @@ * Copyright (c) 2007-2019, The Tor Project, Inc. */ /* See LICENSE for licensing information */ +/** + * @file relay_crypto.h + * @brief Header for relay_crypto.c + **/ + #include "core/or/or.h" #include "core/or/circuitlist.h" #include "core/or/crypt_path.h" |