mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-03-01 00:59:49 +01:00
16 lines
338 B
C
16 lines
338 B
C
|
/* Copyright (c) 2007-2018, The Tor Project, Inc. */
|
||
|
/* See LICENSE for licensing information */
|
||
|
|
||
|
/**
|
||
|
* \file btrack_circuit.h
|
||
|
* \brief Header file for btrack_circuit.c
|
||
|
**/
|
||
|
|
||
|
#ifndef TOR_BTRACK_CIRCUIT_H
|
||
|
#define TOR_BTRACK_CIRCUIT_H
|
||
|
|
||
|
int btrack_circ_init(void);
|
||
|
void btrack_circ_fini(void);
|
||
|
|
||
|
#endif /* defined(TOR_BTRACK_CIRCUIT_H) */
|