From 63e4cfbeb609f88bdcc622b63cc74558a6e0e235 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 7 Dec 2006 18:57:29 +0000 Subject: r11461@Kushana: nickm | 2006-12-07 13:16:45 -0500 Change logging format of state file to only include non-default values. Adjust clients to never store bandwidth history in the state file. (Possible backport candidate.) svn:r9043 --- src/or/config.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/or/config.c') diff --git a/src/or/config.c b/src/or/config.c index 1db8d65f4f..9beb10a6c2 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -274,11 +274,11 @@ static config_var_t _state_vars[] = { VAR("EntryGuards", LINELIST_V, EntryGuards, NULL), VAR("BWHistoryReadEnds", ISOTIME, BWHistoryReadEnds, NULL), - VAR("BWHistoryReadInterval", UINT, BWHistoryReadInterval, NULL), - VAR("BWHistoryReadValues", CSV, BWHistoryReadValues, NULL), + VAR("BWHistoryReadInterval", UINT, BWHistoryReadInterval, "900"), + VAR("BWHistoryReadValues", CSV, BWHistoryReadValues, ""), VAR("BWHistoryWriteEnds", ISOTIME, BWHistoryWriteEnds, NULL), - VAR("BWHistoryWriteInterval", UINT, BWHistoryWriteInterval, NULL), - VAR("BWHistoryWriteValues", CSV, BWHistoryWriteValues, NULL), + VAR("BWHistoryWriteInterval", UINT, BWHistoryWriteInterval, "900"), + VAR("BWHistoryWriteValues", CSV, BWHistoryWriteValues, ""), VAR("TorVersion", STRING, TorVersion, NULL), @@ -3968,7 +3968,7 @@ or_state_save(void) global_state->LastWritten = time(NULL); tor_free(global_state->TorVersion); global_state->TorVersion = tor_strdup("Tor " VERSION); - state = config_dump(&state_format, global_state, 0); + state = config_dump(&state_format, global_state, 1); len = strlen(state)+128; contents = tor_malloc(len); format_local_iso_time(tbuf, time(NULL)); -- cgit v1.2.3-54-g00ecf