tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

fakecircs.h (427B)


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