summaryrefslogtreecommitdiff
path: root/src/or/control.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/or/control.c')
-rw-r--r--src/or/control.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/or/control.c b/src/or/control.c
index 5874fe1d5a..eedc8eac34 100644
--- a/src/or/control.c
+++ b/src/or/control.c
@@ -1851,6 +1851,16 @@ circuit_describe_status_for_controller(origin_circuit_t *circ)
smartlist_add(descparts, rend_query_arg);
}
+ {
+ char *time_created_arg = NULL;
+
+ tor_asprintf(&time_created_arg, "TIME_CREATED=%ld,%ld",
+ circ->_base.timestamp_created.tv_sec,
+ circ->_base.timestamp_created.tv_usec);
+
+ smartlist_add(descparts, time_created_arg);
+ }
+
rv = smartlist_join_strings(descparts, " ", 0, NULL);
SMARTLIST_FOREACH(descparts, char *, cp, tor_free(cp));