blob: 7183b9bc3cb4d23730e510f13a4d1e17e11b32da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Copyright (c) 2007-2021, The Tor Project, Inc. */
/* See LICENSE for licensing information */
/**
* \file btrack_orconn_maps.h
* \brief Header file for btrack_orconn_maps.c
**/
#ifndef TOR_BTRACK_ORCONN_MAPS_H
#define TOR_BTRACK_ORCONN_MAPS_H
void bto_delete(uint64_t);
bt_orconn_t *bto_find_or_new(uint64_t, uint64_t);
void bto_init_maps(void);
void bto_clear_maps(void);
#endif /* !defined(TOR_BTRACK_ORCONN_MAPS_H) */
|