[or-cvs] r8331: new config option AvoidDiskWrites for people running tors on (tor/trunk/src/or)
arma at seul.org
arma at seul.org
Thu Sep 7 00:30:30 UTC 2006
Author: arma
Date: 2006-09-06 20:30:29 -0400 (Wed, 06 Sep 2006)
New Revision: 8331
Modified:
tor/trunk/src/or/config.c
tor/trunk/src/or/or.h
Log:
new config option AvoidDiskWrites for people running tors on
usb keys and other media that degrades when you write.
not implemented yet, so just a reminder.
Modified: tor/trunk/src/or/config.c
===================================================================
--- tor/trunk/src/or/config.c 2006-09-06 21:35:30 UTC (rev 8330)
+++ tor/trunk/src/or/config.c 2006-09-07 00:30:29 UTC (rev 8331)
@@ -131,6 +131,7 @@
VAR("AuthDirReject", LINELIST, AuthDirReject, NULL),
VAR("AuthDirRejectUnlisted",BOOL, AuthDirRejectUnlisted,"0"),
VAR("AuthoritativeDirectory",BOOL, AuthoritativeDir, "0"),
+ VAR("AvoidDiskWrites", BOOL, AvoidDiskWrites, "0"),
VAR("BandwidthBurst", MEMUNIT, BandwidthBurst, "6 MB"),
VAR("BandwidthRate", MEMUNIT, BandwidthRate, "3 MB"),
VAR("CircuitBuildTimeout", INTERVAL, CircuitBuildTimeout, "1 minute"),
Modified: tor/trunk/src/or/or.h
===================================================================
--- tor/trunk/src/or/or.h 2006-09-06 21:35:30 UTC (rev 8330)
+++ tor/trunk/src/or/or.h 2006-09-07 00:30:29 UTC (rev 8331)
@@ -1429,6 +1429,8 @@
int VersioningAuthoritativeDir; /**< Boolean: is this an authoritative
* directory that's willing to recommend
* versions? */
+ int AvoidDiskWrites; /**< Boolean: should we never cache things to disk?
+ * Not used yet. */
int ClientOnly; /**< Boolean: should we never evolve into a server role? */
int NoPublish; /**< Boolean: should we never publish a descriptor? */
int PublishServerDescriptor; /**< Do we publish our descriptor as normal? */
More information about the tor-commits
mailing list