diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-09-01 10:58:53 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-09-22 09:24:35 -0400 |
commit | bca4211de5464cd159592b359b2f16eb64d3c07f (patch) | |
tree | 462b3d2249f6330cf977bd3c0282853e84b45065 /src/or/or.h | |
parent | d8f031aec2ee84c753ef282577c7f4fcf0123d2f (diff) | |
download | tor-bca4211de5464cd159592b359b2f16eb64d3c07f.tar.gz tor-bca4211de5464cd159592b359b2f16eb64d3c07f.zip |
Add a --master-key option
This lets the user override the default location for the master key
when used with --keygen
Part of 16769.
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index 0637325b24..22c1eb29f8 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -4303,6 +4303,7 @@ typedef struct { int use_keygen_passphrase_fd; int keygen_passphrase_fd; int change_key_passphrase; + char *master_key_fname; } or_options_t; /** Persistent state for an onion router, as saved to disk. */ |