diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-04-08 16:19:09 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-04-25 14:13:03 -0400 |
commit | 95afdb005cce04cfb87df6a75980944173c15ed7 (patch) | |
tree | 4604c7c96572b64e0ab0ab027a522ecf4f9d695d /src/feature/control/control_fmt.h | |
parent | d8b3ec865de2738144bd6bbf9f6355662e64eb25 (diff) | |
download | tor-95afdb005cce04cfb87df6a75980944173c15ed7.tar.gz tor-95afdb005cce04cfb87df6a75980944173c15ed7.zip |
Use new parser logic for SETCONF/RESETCONF code.
Here we get to throw away a LOT of unused code, since most of the
old parsing was redundant with kvline.
Diffstat (limited to 'src/feature/control/control_fmt.h')
-rw-r--r-- | src/feature/control/control_fmt.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/feature/control/control_fmt.h b/src/feature/control/control_fmt.h index 74545eb309..08acf85181 100644 --- a/src/feature/control/control_fmt.h +++ b/src/feature/control/control_fmt.h @@ -25,8 +25,6 @@ char *circuit_describe_status_for_controller(origin_circuit_t *circ); size_t write_escaped_data(const char *data, size_t len, char **out); size_t read_escaped_data(const char *data, size_t len, char **out); -const char *extract_escaped_string(const char *start, size_t in_len_max, - char **out, size_t *out_len); const char *decode_escaped_string(const char *start, size_t in_len_max, char **out, size_t *out_len); void send_control_done(control_connection_t *conn); |