diff options
Diffstat (limited to 'src/or/hs_config.h')
-rw-r--r-- | src/or/hs_config.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/or/hs_config.h b/src/or/hs_config.h new file mode 100644 index 0000000000..08072d18d2 --- /dev/null +++ b/src/or/hs_config.h @@ -0,0 +1,19 @@ +/* Copyright (c) 2016, The Tor Project, Inc. */ +/* See LICENSE for licensing information */ + +/** + * \file hs_config.h + * \brief Header file containing configuration ABI/API for the HS subsytem. + **/ + +#ifndef TOR_HS_CONFIG_H +#define TOR_HS_CONFIG_H + +#include "or.h" + +/* API */ + +int hs_config_service_all(const or_options_t *options, int validate_only); + +#endif /* TOR_HS_CONFIG_H */ + |