tor/src/or/rendclient.c

51 lines
539 B
C
Raw Normal View History

/* 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:
*/