mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-26 07:31:33 +01:00
51 lines
539 B
C
51 lines
539 B
C
|
/* Copyright 2004 Roger Dingledine */
|
||
|
/* See LICENSE for licensing information */
|
||
|
/* $Id$ */
|
||
|
|
||
|
#include "or.h"
|
||
|
|
||
|
/* send the introduce cell */
|
||
|
void
|
||
|
rend_client_intro_is_ready()
|
||
|
{
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
/* send the rendezvous cell */
|
||
|
void
|
||
|
rend_client_rendezvous_is_ready()
|
||
|
{
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
/* bob sent us a rendezvous cell, join the circs. */
|
||
|
void
|
||
|
rend_client_rendezvous()
|
||
|
{
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
void rend_client_desc_fetched(char *query) {
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
void rend_client_desc_not_fetched(char *query) {
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
Local Variables:
|
||
|
mode:c
|
||
|
indent-tabs-mode:nil
|
||
|
c-basic-offset:2
|
||
|
End:
|
||
|
*/
|