Control port STREAM XON/XOFF status event notification
[tor.git] / src / feature / control / btrack.c
blob73a3eb690452b6c14e730443e057c1c965d183b2
1 /* Copyright (c) 2007-2021, The Tor Project, Inc. */
2 /* See LICENSE for licensing information */
4 /**
5 * \file btrack.c
6 * \brief Bootstrap trackers
8 * Initializes and shuts down the specific bootstrap trackers. These
9 * trackers help the reporting of bootstrap progress by maintaining
10 * state information about various subsystems within tor. When the
11 * correct state changes happen, these trackers emit controller
12 * events.
14 * These trackers avoid referring directly to the internals of state
15 * objects of other subsystems.
17 * btrack_circuit.c contains the tracker for origin circuits.
19 * btrack_orconn.c contains the tracker for OR connections.
21 * Eventually there will be a tracker for directory downloads as well.
22 **/
24 #include "feature/control/btrack_circuit.h"
25 #include "feature/control/btrack_orconn.h"
26 #include "feature/control/btrack_sys.h"
27 #include "lib/pubsub/pubsub.h"
28 #include "lib/subsys/subsys.h"
30 static int
31 btrack_init(void)
33 if (btrack_orconn_init())
34 return -1;
36 return 0;
39 static void
40 btrack_fini(void)
42 btrack_orconn_fini();
43 btrack_circ_fini();
46 static int
47 btrack_add_pubsub(pubsub_connector_t *connector)
49 if (btrack_orconn_add_pubsub(connector))
50 return -1;
51 if (btrack_circ_add_pubsub(connector))
52 return -1;
54 return 0;
57 const subsys_fns_t sys_btrack = {
58 .name = "btrack",
59 SUBSYS_DECLARE_LOCATION(),
60 .supported = true,
61 .level = 55,
62 .initialize = btrack_init,
63 .shutdown = btrack_fini,
64 .add_pubsub = btrack_add_pubsub,