hs_cell.h 485 B

12345678910111213141516171819
  1. /* Copyright (c) 2017, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file hs_cell.h
  5. * \brief Header file containing cell data for the whole HS subsytem.
  6. **/
  7. #ifndef TOR_HS_CELL_H
  8. #define TOR_HS_CELL_H
  9. #include "hs_service.h"
  10. ssize_t hs_cell_build_establish_intro(const char *circ_nonce,
  11. const hs_service_intro_point_t *ip,
  12. uint8_t *cell_out);
  13. #endif /* TOR_HS_CELL_H */