Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-06-22 | Automated fixup of include paths after torlog.h movement. | Nick Mathewson | |
2018-06-22 | Extract smartlist.h from container.h | Nick Mathewson | |
2018-06-22 | Rectify include paths after container split (automatic) | Nick Mathewson | |
2018-06-20 | Run rectify_include_paths.py | Nick Mathewson | |
2018-06-20 | Update copyrights to 2018. | Nick Mathewson | |
2017-12-08 | Convert the rest of src/common's headers to use FREE_AND_NULL | Nick Mathewson | |
2017-10-31 | Merge branch 'fix-torrcd-sandbox-22605v2' | Nick Mathewson | |
2017-09-28 | Correct docs for config_lines_dup_and_filter | Nick Mathewson | |
2017-09-15 | Run our #else/#endif annotator on our source code. | Nick Mathewson | |
2017-08-30 | Adds files included by torrc and defaults to sandbox filter #22605 | Daniel Pinto | |
2017-08-08 | Use a single free-and-exit strategy in config_process_include. | Nick Mathewson | |
This avoids a double-free when a pointer already freed with tor_free(config_line) is freed again in the cleanup-and-exit code. Fixes bug 23155. | |||
2017-05-28 | Replace 3-star pointer with 2-star pointer | Daniel Pinto | |
2017-05-28 | Fix crash with %include | Daniel Pinto | |
Fixes crash when including a folder that contains a non-empty file without any values followed by any other non-empty file. | |||
2017-05-19 | Remove call to get_unquoted_path in config_process_include() | Nick Mathewson | |
parse_config_line_from_str_verbose() already looks for strings that are surrounded by quotes, and processes them with unescape_string(). So things were getting decoded twice, which was (in turn) playing havoc with backslashes on Windows. | |||
2017-05-18 | Add support for %include funcionality on torrc #1922 | Daniel Pinto | |
config_get_lines is now split into two functions: - config_get_lines which is the same as before we had %include - config_get_lines_include which actually processes %include | |||
2017-04-15 | Add a config_line_prepend() function | Nick Mathewson | |
2017-04-06 | Explain config_line_find() behavior on duplicates. | Nick Mathewson | |
2017-04-06 | Add an assertion to config_line_append(). | Nick Mathewson | |
2017-04-04 | Move config line parsing function to confline.c | Nick Mathewson | |
2017-04-04 | Move config_line_t functions from confparse.c into common. | Nick Mathewson | |
I'm doing this to storagedir to used config_line_t. |