mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
Add a HS_DESC CREATED control event
The HS_DESC CREATED event should be emmited when a new service descriptor is generated for a local rendevous service. This event is documented in the control spec. This commit resolves ticket #16291.
This commit is contained in:
parent
1a75e6da00
commit
af3be650e3
@ -6233,6 +6233,27 @@ get_desc_id_from_query(const rend_data_t *rend_data, const char *hsdir_fp)
|
||||
return desc_id;
|
||||
}
|
||||
|
||||
/** send HS_DESC CREATED event when a local service generates a descriptor.
|
||||
*
|
||||
* <b>service_id</b> is the descriptor onion address.
|
||||
* <b>desc_id_base32</b> is the descriptor ID.
|
||||
*/
|
||||
void
|
||||
control_event_hs_descriptor_created(const char *service_id,
|
||||
const char *desc_id_base32)
|
||||
{
|
||||
if (!service_id || !desc_id_base32) {
|
||||
log_warn(LD_BUG, "Called with service_digest==%p, "
|
||||
"desc_id_base32==%p", service_id, desc_id_base32);
|
||||
return;
|
||||
}
|
||||
|
||||
send_control_event(EVENT_HS_DESC,
|
||||
"650 HS_DESC CREATED %s UNKNOWN UNKNOWN %s\r\n",
|
||||
service_id,
|
||||
desc_id_base32);
|
||||
}
|
||||
|
||||
/** send HS_DESC upload event.
|
||||
*
|
||||
* <b>service_id</b> is the descriptor onion address.
|
||||
|
@ -117,6 +117,8 @@ MOCK_DECL(const char *, node_describe_longname_by_id,(const char *id_digest));
|
||||
void control_event_hs_descriptor_requested(const rend_data_t *rend_query,
|
||||
const char *desc_id_base32,
|
||||
const char *hs_dir);
|
||||
void control_event_hs_descriptor_created(const char *service_id,
|
||||
const char *desc_id_base32);
|
||||
void control_event_hs_descriptor_upload(const char *service_id,
|
||||
const char *desc_id_base32,
|
||||
const char *hs_dir);
|
||||
|
Loading…
Reference in New Issue
Block a user