blob: f925194e636280ec8cd2ca80758059ac40510f8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* Copyright (c) 2001 Matej Pfajfar.
* Copyright (c) 2001-2004, Roger Dingledine.
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
* Copyright (c) 2007-2019, The Tor Project, Inc. */
/* See LICENSE for licensing information */
/**
* @file opts_testing_helpers.h
* @brief Header for test/opts_test_helpers.c
**/
#ifndef TOR_TEST_OPTS_TESTING_HELPERS_H
#define TOR_TEST_OPTS_TESTING_HELPERS_H
struct crypto_options_t;
struct dirauth_options_t;
struct or_options_t;
struct crypto_options_t *get_crypto_options(struct or_options_t *opt);
struct dirauth_options_t *get_dirauth_options(struct or_options_t *opt);
#endif /* !defined(TOR_TEST_OPTS_TESTING_HELPERS_H) */
|