Merge branch 'maint-0.4.5' into release-0.4.5
[tor.git] / src / test / fakecircs.h
blobed8a150a3fcb56ec0bd38d0cba633225c7a3d52b
1 /* Copyright (c) 2019-2020, 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) */