blob: 8b2207721e50d7e09102cda2bbe4211d5377184f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Copyright (c) 2007-2020, The Tor Project, Inc. */
/* See LICENSE for licensing information */
/**
* \file btrack_orconn_cevent.h
* \brief Header file for btrack_orconn_cevent.c
**/
#ifndef TOR_BTRACK_ORCONN_CEVENT_H
#define TOR_BTRACK_ORCONN_CEVENT_H
#include "feature/control/btrack_orconn.h"
void bto_cevent_anyconn(const bt_orconn_t *);
void bto_cevent_apconn(const bt_orconn_t *);
void bto_cevent_reset(void);
#endif /* !defined(TOR_BTRACK_ORCONN_CEVENT_H) */
|