diff options
author | Roger Dingledine <arma@torproject.org> | 2004-05-09 16:47:25 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-05-09 16:47:25 +0000 |
commit | c6d4a00c5fac0ca22d1a24bc7fc37a6751b74a95 (patch) | |
tree | 0728f4bf2019732b48e49eb0a7d58319dce0cf53 /src/or/rendmid.c | |
parent | b384c5a18d7567d0bce7d6c14b820c61843ee987 (diff) | |
download | tor-c6d4a00c5fac0ca22d1a24bc7fc37a6751b74a95.tar.gz tor-c6d4a00c5fac0ca22d1a24bc7fc37a6751b74a95.zip |
more doxygen markup
plenty more remains
svn:r1824
Diffstat (limited to 'src/or/rendmid.c')
-rw-r--r-- | src/or/rendmid.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/or/rendmid.c b/src/or/rendmid.c index 4879b9e2db..e495870763 100644 --- a/src/or/rendmid.c +++ b/src/or/rendmid.c @@ -2,13 +2,14 @@ /* See LICENSE for licensing information */ /* $Id$ */ -/***** - * rendmid.c: Implement introductions points and rendezvous points. - *****/ +/** + * \file rendmid.c + * \brief Implement introductions points and rendezvous points. + **/ #include "or.h" -/* Respond to an ESTABLISH_INTRO cell by checking the signed data and +/** Respond to an ESTABLISH_INTRO cell by checking the signed data and * setting the circuit's purpose and service pk digest. */ int @@ -107,7 +108,7 @@ rend_mid_establish_intro(circuit_t *circ, const char *request, int request_len) return -1; } -/* Process an INTRODUCE1 cell by finding the corresponding introduction +/** Process an INTRODUCE1 cell by finding the corresponding introduction * circuit, and relaying the body of the INTRODUCE1 cell inside an * INTRODUCE2 cell. */ @@ -177,7 +178,7 @@ rend_mid_introduce(circuit_t *circ, const char *request, int request_len) return -1; } -/* Process an ESTABLISH_RENDEZVOUS cell by setting the circuit's purpose and +/** Process an ESTABLISH_RENDEZVOUS cell by setting the circuit's purpose and * rendezvous cookie. */ int @@ -223,7 +224,7 @@ rend_mid_establish_rendezvous(circuit_t *circ, const char *request, int request_ return -1; } -/* Process a RENDEZVOUS1 cell by looking up the correct rendezvous +/** Process a RENDEZVOUS1 cell by looking up the correct rendezvous * circuit by its relaying the cell's body in a RENDEZVOUS2 cell, and * connecting the two circuits. */ |