mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Add a stub for rend_service_allow_direct_connection
It always returns 0. It should be replaced with the Single Onion version from #17178 when both are merged.
This commit is contained in:
parent
10aa913acc
commit
19816f2f78
@ -3897,3 +3897,11 @@ rend_service_set_connection_addr_port(edge_connection_t *conn,
|
||||
return -2;
|
||||
}
|
||||
|
||||
/* Stub that should be replaced with the #17178 version of the function
|
||||
* when merging. */
|
||||
int
|
||||
rend_service_allow_direct_connection(const or_options_t *options)
|
||||
{
|
||||
(void)options;
|
||||
return 0;
|
||||
}
|
||||
|
@ -131,5 +131,7 @@ void directory_post_to_hs_dir(rend_service_descriptor_t *renddesc,
|
||||
const char *service_id, int seconds_valid);
|
||||
void rend_service_desc_has_uploaded(const rend_data_t *rend_data);
|
||||
|
||||
int rend_service_allow_direct_connection(const or_options_t *options);
|
||||
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user