circuituse.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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-2016, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file circuituse.h
  8. * \brief Header file for circuituse.c.
  9. **/
  10. #ifndef TOR_CIRCUITUSE_H
  11. #define TOR_CIRCUITUSE_H
  12. void circuit_expire_building(void);
  13. void circuit_remove_handled_ports(smartlist_t *needed_ports);
  14. int circuit_stream_is_being_handled(entry_connection_t *conn, uint16_t port,
  15. int min);
  16. void circuit_log_ancient_one_hop_circuits(int age);
  17. #if 0
  18. int circuit_conforms_to_options(const origin_circuit_t *circ,
  19. const or_options_t *options);
  20. #endif
  21. void circuit_build_needed_circs(time_t now);
  22. void circuit_expire_old_circs_as_needed(time_t now);
  23. void circuit_detach_stream(circuit_t *circ, edge_connection_t *conn);
  24. void circuit_expire_old_circuits_serverside(time_t now);
  25. void reset_bandwidth_test(void);
  26. int circuit_enough_testing_circs(void);
  27. void circuit_has_opened(origin_circuit_t *circ);
  28. void circuit_try_attaching_streams(origin_circuit_t *circ);
  29. void circuit_build_failed(origin_circuit_t *circ);
  30. /** Flag to set when a circuit should have only a single hop. */
  31. #define CIRCLAUNCH_ONEHOP_TUNNEL (1<<0)
  32. /** Flag to set when a circuit needs to be built of high-uptime nodes */
  33. #define CIRCLAUNCH_NEED_UPTIME (1<<1)
  34. /** Flag to set when a circuit needs to be built of high-capacity nodes */
  35. #define CIRCLAUNCH_NEED_CAPACITY (1<<2)
  36. /** Flag to set when the last hop of a circuit doesn't need to be an
  37. * exit node. */
  38. #define CIRCLAUNCH_IS_INTERNAL (1<<3)
  39. origin_circuit_t *circuit_launch_by_extend_info(uint8_t purpose,
  40. extend_info_t *info,
  41. int flags);
  42. origin_circuit_t *circuit_launch(uint8_t purpose, int flags);
  43. void circuit_reset_failure_count(int timeout);
  44. int connection_ap_handshake_attach_chosen_circuit(entry_connection_t *conn,
  45. origin_circuit_t *circ,
  46. crypt_path_t *cpath);
  47. int connection_ap_handshake_attach_circuit(entry_connection_t *conn);
  48. void circuit_change_purpose(circuit_t *circ, uint8_t new_purpose);
  49. int hostname_in_track_host_exits(const or_options_t *options,
  50. const char *address);
  51. void mark_circuit_unusable_for_new_conns(origin_circuit_t *circ);
  52. #endif