summaryrefslogtreecommitdiff
path: root/src/or/config.h
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2018-04-25 13:41:04 -0400
committerDavid Goulet <dgoulet@torproject.org>2018-05-09 12:36:39 -0400
commit01ffe8e2f4ca24325e81f040e1ac3a5a17afa5d5 (patch)
treee8530bb79ad45911e2a898d6a7a8f5fc98c940d8 /src/or/config.h
parent61d5ce83a1ecc459798b530730316bfebe3bb192 (diff)
downloadtor-01ffe8e2f4ca24325e81f040e1ac3a5a17afa5d5.tar.gz
tor-01ffe8e2f4ca24325e81f040e1ac3a5a17afa5d5.zip
config: Move any_client_port_set() to config.c
This functions is now used outside of networkstatus.c and makes more sense to be in config.c. It is also renamed to options_any_client_port_set() for the config.c namespace. No code behavior change. Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/config.h')
-rw-r--r--src/or/config.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/config.h b/src/or/config.h
index 1d3c27217e..4b41274434 100644
--- a/src/or/config.h
+++ b/src/or/config.h
@@ -214,6 +214,9 @@ smartlist_t *get_options_from_transport_options_line(const char *line,
const char *transport);
smartlist_t *get_options_for_server_transport(const char *transport);
+/* Port helper functions. */
+int options_any_client_port_set(const or_options_t *options);
+
#ifdef CONFIG_PRIVATE
#define CL_PORT_NO_STREAM_OPTIONS (1u<<0)