hs_control.h 535 B

123456789101112131415161718
  1. /* Copyright (c) 2017, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file hs_control.h
  5. * \brief Header file containing control port event related code.
  6. **/
  7. #ifndef TOR_HS_CONTROL_H
  8. #define TOR_HS_CONTROL_H
  9. /* Event "HS_DESC REQUESTED [...]" */
  10. void hs_control_desc_event_requested(const ed25519_public_key_t *onion_pk,
  11. const char *base64_blinded_pk,
  12. const routerstatus_t *hsdir_rs);
  13. #endif /* !defined(TOR_HS_CONTROL_H) */