diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-11-07 08:13:31 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-11-07 08:13:31 -0500 |
commit | 582cee723a86e44f140a5057152df06659c36e71 (patch) | |
tree | 7ddfa98303125fc428c0cadb0f1a222e3335e101 /src/feature/hs/hs_intropoint.h | |
parent | 45698e89edecce71256bc5e2529f9610b0eea50f (diff) | |
download | tor-582cee723a86e44f140a5057152df06659c36e71.tar.gz tor-582cee723a86e44f140a5057152df06659c36e71.zip |
Fix various doxygen comments in feature/hs.
Diffstat (limited to 'src/feature/hs/hs_intropoint.h')
-rw-r--r-- | src/feature/hs/hs_intropoint.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/feature/hs/hs_intropoint.h b/src/feature/hs/hs_intropoint.h index 94ebf021e4..f4d7ad2637 100644 --- a/src/feature/hs/hs_intropoint.h +++ b/src/feature/hs/hs_intropoint.h @@ -12,15 +12,15 @@ #include "lib/crypt_ops/crypto_curve25519.h" #include "feature/nodelist/torcert.h" -/* Object containing introduction point common data between the service and +/** Object containing introduction point common data between the service and * the client side. */ typedef struct hs_intropoint_t { - /* Does this intro point only supports legacy ID ?. */ + /** Does this intro point only supports legacy ID ?. */ unsigned int is_only_legacy : 1; - /* Authentication key certificate from the descriptor. */ + /** Authentication key certificate from the descriptor. */ tor_cert_t *auth_key_cert; - /* A list of link specifier. */ + /** A list of link specifier. */ smartlist_t *link_specifiers; } hs_intropoint_t; @@ -64,4 +64,3 @@ STATIC bool cell_dos_extension_parameters_are_valid( #endif /* defined(HS_INTROPOINT_PRIVATE) */ #endif /* !defined(TOR_HS_INTRO_H) */ - |