diff options
author | Neel Chauhan <neel@neelc.org> | 2020-05-27 20:40:02 -0700 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2020-07-01 12:00:53 -0400 |
commit | 4477317cbec059eefb4b86b88efa16f3a5ba7e52 (patch) | |
tree | 6e2935676d6f3d4577bd6255c485e32e46af5bea /src/feature/control/control_getinfo.h | |
parent | 8d8a9d7f1d9cc779036441cfa9639f35c20e37c9 (diff) | |
download | tor-4477317cbec059eefb4b86b88efa16f3a5ba7e52.tar.gz tor-4477317cbec059eefb4b86b88efa16f3a5ba7e52.zip |
control: Add a key to GETINFO to fetch the circuit onion handshake rephist values
Diffstat (limited to 'src/feature/control/control_getinfo.h')
-rw-r--r-- | src/feature/control/control_getinfo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/feature/control/control_getinfo.h b/src/feature/control/control_getinfo.h index 0ada49258e..f61d632446 100644 --- a/src/feature/control/control_getinfo.h +++ b/src/feature/control/control_getinfo.h @@ -60,6 +60,10 @@ STATIC int getinfo_helper_current_time( control_connection_t *control_conn, const char *question, char **answer, const char **errmsg); +STATIC int getinfo_helper_rephist( + control_connection_t *control_conn, + const char *question, char **answer, + const char **errmsg); #endif /* defined(CONTROL_GETINFO_PRIVATE) */ #endif /* !defined(TOR_CONTROL_GETINFO_H) */ |