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