1 /* Copyright (c) 2019-2020, The Tor Project, Inc. */
2 /* See LICENSE for licensing information */
6 * \brief Declarations for fake circuits for test suite use.
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) */