[or-cvs] [tor/master 07/12] Break NoPublish support
nickm at torproject.org
nickm at torproject.org
Mon Nov 15 19:09:59 UTC 2010
Author: Sebastian Hahn <sebastian at torproject.org>
Date: Sat, 30 Oct 2010 06:38:50 +0200
Subject: Break NoPublish support
Commit: 5040c855d19eaac23e35d34c73cb5bbe40f95a88
---
src/or/config.c | 11 +----------
src/or/or.h | 2 --
2 files changed, 1 insertions(+), 12 deletions(-)
diff --git a/src/or/config.c b/src/or/config.c
index c28cf58..d9e74dc 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -304,7 +304,7 @@ static config_var_t _option_vars[] = {
V(NATDPort, UINT, "0"),
V(Nickname, STRING, NULL),
V(WarnUnsafeSocks, BOOL, "1"),
- V(NoPublish, BOOL, "0"),
+ OBSOLETE("NoPublish"),
VAR("NodeFamily", LINELIST, NodeFamilies, NULL),
V(NumCPUs, UINT, "1"),
V(NumEntryGuards, UINT, "3"),
@@ -2996,14 +2996,6 @@ options_validate(or_options_t *old_options, or_options_t *options,
if (options_init_logs(options, 1)<0) /* Validate the log(s) */
REJECT("Failed to validate Log options. See logs for details.");
- if (options->NoPublish) {
- log(LOG_WARN, LD_CONFIG,
- "NoPublish is obsolete. Use PublishServerDescriptor instead.");
- SMARTLIST_FOREACH(options->PublishServerDescriptor, char *, s,
- tor_free(s));
- smartlist_clear(options->PublishServerDescriptor);
- }
-
if (authdir_mode(options)) {
/* confirm that our address isn't broken, so we can complain now */
uint32_t tmp;
@@ -3832,7 +3824,6 @@ options_transition_affects_descriptor(or_options_t *old_options,
old_options->ORPort != new_options->ORPort ||
old_options->DirPort != new_options->DirPort ||
old_options->ClientOnly != new_options->ClientOnly ||
- old_options->NoPublish != new_options->NoPublish ||
old_options->_PublishServerDescriptor !=
new_options->_PublishServerDescriptor ||
get_effective_bwrate(old_options) != get_effective_bwrate(new_options) ||
diff --git a/src/or/or.h b/src/or/or.h
index 7f5f68e..a2cefe2 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -2447,8 +2447,6 @@ typedef struct {
int AvoidDiskWrites; /**< Boolean: should we never cache things to disk?
* Not used yet. */
int ClientOnly; /**< Boolean: should we never evolve into a server role? */
- /** Boolean: should we never publish a descriptor? Deprecated. */
- int NoPublish;
/** To what authority types do we publish our descriptor? Choices are
* "v1", "v2", "v3", "bridge", or "". */
smartlist_t *PublishServerDescriptor;
--
1.7.1
More information about the tor-commits
mailing list