diff options
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/or/or.h b/src/or/or.h index 5c14e4d69e..e8a4355eda 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -894,7 +894,12 @@ typedef struct { allowed to sign directories. */ struct config_line_t *RendConfigLines; /**< List of configuration lines * for rendezvous services. */ - char *ContactInfo; /** Contact info to be published in the directory */ + char *ContactInfo; /**< Contact info to be published in the directory */ + + char *HttpProxy; /**< hostname[:port] to use as http proxy, if any */ + uint32_t HttpProxyAddr; /**< Parsed IPv4 addr for http proxy, if any */ + uint16_t HttpProxyPort; /**< Parsed port for http proxy, if any */ + } or_options_t; /* XXX are these good enough defaults? */ |