summaryrefslogtreecommitdiff
path: root/src/core/or/dos_sys.h
blob: 2212d3c7077e7e378d6e7b6bc45375cd17fcbd97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* Copyright (c) 2021, The Tor Project, Inc. */
/* See LICENSE for licensing information */

/**
 * @file dos_sys.h
 * @brief Header for core/or/dos_sys.c
 **/

#ifndef TOR_CORE_OR_DOS_SYS_H
#define TOR_CORE_OR_DOS_SYS_H

struct dos_options_t;
const struct dos_options_t *dos_get_options(void);

extern const struct subsys_fns_t sys_dos;

/**
 * Subsystem level for the metrics system.
 *
 * Defined here so that it can be shared between the real and stub
 * definitions.
 **/
#define DOS_SUBSYS_LEVEL (21)

#endif /* !defined(TOR_CORE_OR_DOS_SYS_H) */