aboutsummaryrefslogtreecommitdiff
path: root/src/or/policies.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2010-07-18 17:05:58 +0200
committerNick Mathewson <nickm@torproject.org>2010-07-18 17:05:58 +0200
commit0b4b51314f5cb0242e7a8fd3b87bc800cd04eacc (patch)
treea21f97794107eafb0f8e4192d88f8812b037ea62 /src/or/policies.c
parent9d5d0f040f9b0ddf6c10166200d115bfa30a31da (diff)
downloadtor-0b4b51314f5cb0242e7a8fd3b87bc800cd04eacc.tar
tor-0b4b51314f5cb0242e7a8fd3b87bc800cd04eacc.tar.gz
Make the controller act more usefully when GETINFO fails
Right now it says "552 internal error" because there's no way for getinfo_helper_*() countries to specify an error message. This patch changes the getinfo_helper_*() interface, and makes most of the getinfo helpers give useful error messages in response to failures. This should prevent recurrences of bug 1699, where a missing GeoIPFile line in the torrc made GETINFO ip-to-county/* fail in a "not obvious how to fix" way.
Diffstat (limited to 'src/or/policies.c')
-rw-r--r--src/or/policies.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/policies.c b/src/or/policies.c
index 90e159a88..f5c02a600 100644
--- a/src/or/policies.c
+++ b/src/or/policies.c
@@ -1288,9 +1288,11 @@ cleanup:
* about "exit-policy/..." */
int
getinfo_helper_policies(control_connection_t *conn,
- const char *question, char **answer)
+ const char *question, char **answer,
+ const char **errmsg)
{
(void) conn;
+ (void) errmsg;
if (!strcmp(question, "exit-policy/default")) {
*answer = tor_strdup(DEFAULT_EXIT_POLICY);
}