circuitbuild.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2013, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file circuitbuild.h
  8. * \brief Header file for circuitbuild.c.
  9. **/
  10. #ifndef TOR_CIRCUITBUILD_H
  11. #define TOR_CIRCUITBUILD_H
  12. char *circuit_list_path(origin_circuit_t *circ, int verbose);
  13. char *circuit_list_path_for_controller(origin_circuit_t *circ);
  14. void circuit_log_path(int severity, unsigned int domain,
  15. origin_circuit_t *circ);
  16. void circuit_rep_hist_note_result(origin_circuit_t *circ);
  17. origin_circuit_t *origin_circuit_init(uint8_t purpose, int flags);
  18. origin_circuit_t *circuit_establish_circuit(uint8_t purpose,
  19. extend_info_t *exit,
  20. int flags);
  21. int circuit_handle_first_hop(origin_circuit_t *circ);
  22. void circuit_n_chan_done(channel_t *chan, int status);
  23. int inform_testing_reachability(void);
  24. int circuit_timeout_want_to_count_circ(origin_circuit_t *circ);
  25. int circuit_send_next_onion_skin(origin_circuit_t *circ);
  26. void circuit_note_clock_jumped(int seconds_elapsed);
  27. int circuit_extend(cell_t *cell, circuit_t *circ);
  28. int circuit_init_cpath_crypto(crypt_path_t *cpath, const char *key_data,
  29. int reverse);
  30. struct created_cell_t;
  31. int circuit_finish_handshake(origin_circuit_t *circ,
  32. const struct created_cell_t *created_cell);
  33. int circuit_truncated(origin_circuit_t *circ, crypt_path_t *layer,
  34. int reason);
  35. int onionskin_answer(or_circuit_t *circ,
  36. const struct created_cell_t *created_cell,
  37. const char *keys,
  38. const uint8_t *rend_circ_nonce);
  39. int circuit_all_predicted_ports_handled(time_t now, int *need_uptime,
  40. int *need_capacity);
  41. int circuit_append_new_exit(origin_circuit_t *circ, extend_info_t *info);
  42. int circuit_extend_to_new_exit(origin_circuit_t *circ, extend_info_t *info);
  43. void onion_append_to_cpath(crypt_path_t **head_ptr, crypt_path_t *new_hop);
  44. extend_info_t *extend_info_new(const char *nickname, const char *digest,
  45. crypto_pk_t *onion_key,
  46. const curve25519_public_key_t *curve25519_key,
  47. const tor_addr_t *addr, uint16_t port);
  48. extend_info_t *extend_info_from_node(const node_t *r, int for_direct_connect);
  49. extend_info_t *extend_info_dup(extend_info_t *info);
  50. void extend_info_free(extend_info_t *info);
  51. const node_t *build_state_get_exit_node(cpath_build_state_t *state);
  52. const char *build_state_get_exit_nickname(cpath_build_state_t *state);
  53. const node_t *choose_good_entry_server(uint8_t purpose,
  54. cpath_build_state_t *state);
  55. double pathbias_get_extreme_rate(const or_options_t *options);
  56. int pathbias_get_dropguards(const or_options_t *options);
  57. void pathbias_count_timeout(origin_circuit_t *circ);
  58. int pathbias_check_close(origin_circuit_t *circ, int reason);
  59. int pathbias_check_probe_response(circuit_t *circ, const cell_t *cell);
  60. #endif