rendclient.c 539 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* Copyright 2004 Roger Dingledine */
  2. /* See LICENSE for licensing information */
  3. /* $Id$ */
  4. #include "or.h"
  5. /* send the introduce cell */
  6. void
  7. rend_client_intro_is_ready()
  8. {
  9. }
  10. /* send the rendezvous cell */
  11. void
  12. rend_client_rendezvous_is_ready()
  13. {
  14. }
  15. /* bob sent us a rendezvous cell, join the circs. */
  16. void
  17. rend_client_rendezvous()
  18. {
  19. }
  20. void rend_client_desc_fetched(char *query) {
  21. }
  22. void rend_client_desc_not_fetched(char *query) {
  23. }
  24. /*
  25. Local Variables:
  26. mode:c
  27. indent-tabs-mode:nil
  28. c-basic-offset:2
  29. End:
  30. */