Bump copyright date to 2019
[tor.git] / src / feature / hs / hs_config.h
blob040e451f1365a65240f32029c2d2ec171e41d982
1 /* Copyright (c) 2016-2019, The Tor Project, Inc. */
2 /* See LICENSE for licensing information */
4 /**
5 * \file hs_config.h
6 * \brief Header file containing configuration ABI/API for the HS subsytem.
7 **/
9 #ifndef TOR_HS_CONFIG_H
10 #define TOR_HS_CONFIG_H
12 #include "core/or/or.h"
14 /* Max value for HiddenServiceMaxStreams */
15 #define HS_CONFIG_MAX_STREAMS_PER_RDV_CIRCUIT 65535
16 /* Maximum number of intro points per version 3 services. */
17 #define HS_CONFIG_V3_MAX_INTRO_POINTS 20
19 /* API */
21 int hs_config_service_all(const or_options_t *options, int validate_only);
22 int hs_config_client_auth_all(const or_options_t *options, int validate_only);
24 #endif /* !defined(TOR_HS_CONFIG_H) */