diff options
author | George Kadianakis <desnacked@riseup.net> | 2013-06-12 15:28:31 +0300 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-07-18 08:45:02 -0400 |
commit | 08d98071252995d586f0ac3cef82f6ec46fc9347 (patch) | |
tree | 97cadf2726e7205ab7a4a86137f6249fbff3fb35 /src/or/or.h | |
parent | 9fda7e8cd1bbc33479c667ea97a220333f81c148 (diff) | |
download | tor-08d98071252995d586f0ac3cef82f6ec46fc9347.tar.gz tor-08d98071252995d586f0ac3cef82f6ec46fc9347.zip |
Write function that parses ServerTransportOptions torrc lines.
And use it to validate them.
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index 568958d61f..b8c4279896 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3500,6 +3500,9 @@ typedef struct { /** List of TCP/IP addresses that transports should listen at. */ config_line_t *ServerTransportListenAddr; + /** List of options that must be passed to pluggable transports. */ + config_line_t *ServerTransportOptions; + int BridgeRelay; /**< Boolean: are we acting as a bridge relay? We make * this explicit so we can change how we behave in the * future. */ |