mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 21:53:48 +01:00
20 lines
383 B
C
20 lines
383 B
C
|
/* 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 */
|
||
|
|