Make some functions static

svn:r1857
This commit is contained in:
Nick Mathewson
2004-05-12 20:58:27 +00:00
parent 32c42a0ee2
commit 537fb82cbb
7 changed files with 21 additions and 20 deletions
+1 -6
View File
@@ -24,7 +24,7 @@ rend_client_introcirc_is_open(circuit_t *circ)
/** Send the establish-rendezvous cell along a rendezvous circuit. if
* it fails, mark the circ for close and return -1. else return 0.
*/
int
static int
rend_client_send_establish_rendezvous(circuit_t *circ)
{
tor_assert(circ->purpose == CIRCUIT_PURPOSE_C_ESTABLISH_REND);
@@ -389,11 +389,6 @@ void rend_client_desc_fetched(char *query, int success) {
}
}
/** Return 0 if one and two are the same service ids, else -1 or 1 */
int rend_cmp_service_ids(const char *one, const char *two) {
return strcasecmp(one,two);
}
/** strdup a nickname for a random introduction
* point of query. return NULL if error.
*/