mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-14 15:23:27 +01:00
25 lines
584 B
C
25 lines
584 B
C
|
/* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
||
|
* Copyright (c) 2019, The Tor Project, Inc. */
|
||
|
/* See LICENSE for licensing information */
|
||
|
|
||
|
/**
|
||
|
* \file control_hs.c
|
||
|
*
|
||
|
* \brief Header file for control_hs.c.
|
||
|
**/
|
||
|
|
||
|
#ifndef TOR_CONTROL_HS_H
|
||
|
#define TOR_CONTROL_HS_H
|
||
|
|
||
|
struct control_cmd_syntax_t;
|
||
|
|
||
|
extern const char *onion_client_auth_add_keywords[];
|
||
|
extern const struct control_cmd_syntax_t onion_client_auth_add_syntax;
|
||
|
|
||
|
int
|
||
|
handle_control_onion_client_auth_add(control_connection_t *conn,
|
||
|
const control_cmd_args_t *args);
|
||
|
|
||
|
#endif
|
||
|
|