aboutsummaryrefslogtreecommitdiff
path: root/src/or/confparse.c
AgeCommit message (Collapse)Author
2016-02-27Update the copyright year.Nick Mathewson
2016-02-27Make sure that every module in src/or has a brief description.Nick Mathewson
2015-01-02Bump copyright dates to 2015, in case someday this matters.Nick Mathewson
2014-10-28Add another year to our copyright dates.Nick Mathewson
Because in 95 years, we or our successors will surely care about enforcing the BSD license terms on this code. Right?
2013-10-09Free the smartlist after parsing csv config optionMatthew Finkel
Bugfix on 1293835440dd4debf6fbfc66e755d9b9384aa362, which implemented 6752: Not in any released tor.
2013-09-13Add a --dump-config option to help testing option parsing.Nick Mathewson
2013-09-13Use commandline parser for other optionsNick Mathewson
These were previously allowed only in the initial position: --help, -h , --version, --digests, --list-torrc-options
2013-07-26Allow {,k,kilo,m,mega,g,giga,t,tera}bit{,s} in torrcNick Mathewson
Patch from CharlieB for ticket #9214
2013-05-24Tweak #6752 patch based on comments by nickm.Karsten Loesing
2013-05-16Lower dir fetch retry schedules in testing networks.Karsten Loesing
Also lower maximum interval without directory requests, and raise maximum download tries. Implements #6752.
2013-03-19Merge branch 'bug8240_v2_squashed' into maint-0.2.4Nick Mathewson
Conflicts: doc/tor.1.txt src/or/circuitbuild.c src/or/config.c src/or/or.h
2013-02-19Make a parse_config_line_from_str variant that gives error messagesNick Mathewson
Without this patch, there's no way to know what went wrong when we fail to parse a torrc line entirely (that is, we can't turn it into a K,V pair.) This patch introduces a new function that yields an error message on failure, so we can at least tell the user what to look for in their nonfunctional torrc. (Actually, it's the same function as before with a new name: parse_config_line_from_str is now a wrapper macro that the unit tests use.) Fixes bug 7950; fix on 0.2.0.16-alpha (58de695f9062576f) which first introduced the possibility of a torrc value not parsing correctly.
2013-01-16Update the copyright date to 201.Nick Mathewson
2012-09-14Split the routerset code out of routerlist.cNick Mathewson
2012-09-13Remove all remaining spurious or_options_t invocations in confparse.cNick Mathewson
2012-09-13Split the generic config_fmt_t code into a new confparse.c fileNick Mathewson
This helps us split up one of our larger files, and sets the stage for refactoring the configuration backend a little