Merge branch 'maint-0.4.6'
[tor.git] / src / test / fakecircs.h
blob61359e9babb0c41a52049b51d466dc87461795c5
1 /* Copyright (c) 2019-2021, The Tor Project, Inc. */
2 /* See LICENSE for licensing information */
4 /**
5 * \file fakecircs.h
6 * \brief Declarations for fake circuits for test suite use.
7 **/
9 #ifndef TOR_FAKECIRCS_H
10 #define TOR_FAKECIRCS_H
12 #include "core/or/or_circuit_st.h"
14 or_circuit_t *new_fake_orcirc(channel_t *nchan, channel_t *pchan);
15 void free_fake_orcirc(or_circuit_t *orcirc);
17 #endif /* !defined(TOR_FAKECIRCS_H) */