mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-14 07:03:44 +01:00
18 lines
427 B
C
18 lines
427 B
C
/* Copyright (c) 2019-2020, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
/**
|
|
* \file fakecircs.h
|
|
* \brief Declarations for fake circuits for test suite use.
|
|
**/
|
|
|
|
#ifndef TOR_FAKECIRCS_H
|
|
#define TOR_FAKECIRCS_H
|
|
|
|
#include "core/or/or_circuit_st.h"
|
|
|
|
or_circuit_t *new_fake_orcirc(channel_t *nchan, channel_t *pchan);
|
|
void free_fake_orcirc(or_circuit_t *orcirc);
|
|
|
|
#endif /* !defined(TOR_FAKECIRCS_H) */
|