diff options
author | George Kadianakis <desnacked@riseup.net> | 2013-07-01 16:45:21 +0300 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-07-18 08:43:52 -0400 |
commit | 8bb2ba13c1cc45d5979c1a3eaeed899e29991aed (patch) | |
tree | aefc978bba25033834794ca5fc4ee5871f3fb5e7 /src/or/transports.h | |
parent | dd44ff663e074d07a8bf8b94dc5d8b9d8dc3fb32 (diff) | |
download | tor-8bb2ba13c1cc45d5979c1a3eaeed899e29991aed.tar.gz tor-8bb2ba13c1cc45d5979c1a3eaeed899e29991aed.zip |
Extract ARGS from SMETHOD line and attach them to transport.
Diffstat (limited to 'src/or/transports.h')
-rw-r--r-- | src/or/transports.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/transports.h b/src/or/transports.h index cc3e018d6d..525d48ab22 100644 --- a/src/or/transports.h +++ b/src/or/transports.h @@ -25,6 +25,9 @@ typedef struct transport_t { /** Boolean: We are re-parsing our transport list, and we are going to remove * this one if we don't find it in the list of configured transports. */ unsigned marked_for_removal : 1; + /** Arguments for this transport that must be written to the + extra-info descriptor. */ + char *extra_info_args; } transport_t; void mark_transport_list(void); |