This patch ensures that we can figure out which PT that terminated in
the PT exit handler.
See: tpo/core/tor#33669
{
tor_assert(process);
+ const managed_proxy_t *mp = process_get_data(process);
+ const char *name = mp ? mp->argv[0] : "N/A";
+
log_warn(LD_PT,
- "Pluggable Transport process terminated with status code %" PRIu64,
- exit_code);
+ "Managed proxy \"%s\" process terminated with status code %" PRIu64,
+ name, exit_code);
/* Returning true here means that the process subsystem will take care of
* calling process_free() on our process_t. */