mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 21:53:48 +01:00
d765cf30b5
Add the entry point from the circuit subsystem of "circuit has opened" which is for all type of hidden service circuits. For the introduction point, this commit actually adds the support for handling those circuits when opened and sending ESTABLISH_INTRO on a circuit. Rendevzou point circuit aren't supported yet at this commit. Signed-off-by: David Goulet <dgoulet@torproject.org>
20 lines
485 B
C
20 lines
485 B
C
/* Copyright (c) 2017, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
/**
|
|
* \file hs_cell.h
|
|
* \brief Header file containing cell data for the whole HS subsytem.
|
|
**/
|
|
|
|
#ifndef TOR_HS_CELL_H
|
|
#define TOR_HS_CELL_H
|
|
|
|
#include "hs_service.h"
|
|
|
|
ssize_t hs_cell_build_establish_intro(const char *circ_nonce,
|
|
const hs_service_intro_point_t *ip,
|
|
uint8_t *cell_out);
|
|
|
|
#endif /* TOR_HS_CELL_H */
|
|
|