aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Merge remote-tracking branch 'origin/maint-0.2.4'Nick Mathewson2013-09-16
|\
| * Merge remote-tracking branch 'origin/maint-0.2.3' into maint-0.2.4Nick Mathewson2013-09-16
| |\
| | * Merge remote-tracking branch 'origin/maint-0.2.2' into maint-0.2.3Nick Mathewson2013-09-16
| | |\
| | | * Update to the September 2013 GeoIP database.Karsten Loesing2013-09-10
| | | |
* | | | Fix a windows compilation warning from 4647 branchNick Mathewson2013-09-13
| | | |
* | | | Whoops; make or_state_validate conform to validate_fn_t.Nick Mathewson2013-09-13
| | | | | | | | | | | | | | | | | | | | Bugfix on 1293835440dd4debf6fbfc66e755d9b9384aa362, which implemented 6752: Not in any released tor.
* | | | Merge remote-tracking branch 'Ryman/bug6384'Nick Mathewson2013-09-13
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/or/config.c src/or/main.c
| * | | | Fixed leak and added minor documentation for #6384.Kevin Butler2013-09-04
| | | | |
| * | | | Added --library-versions flag to print the compile time and runtime versions ↵Kevin Butler2013-09-01
| | | | | | | | | | | | | | | | | | | | of libevent, openssl and zlib. Partially implements #6384.
* | | | | Fix a windows compilation warning from sandboxing branchNick Mathewson2013-09-13
| | | | |
* | | | | Merge branch 'bug4647_squashed'Nick Mathewson2013-09-13
|\ \ \ \ \
| * | | | | Finish tests for command-line argumentsNick Mathewson2013-09-13
| | | | | |
| * | | | | Add a --dump-config option to help testing option parsing.Nick Mathewson2013-09-13
| | | | | |
| * | | | | Whoops; make options_validate conform to validate_fn_t.Nick Mathewson2013-09-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This just goes to show: never cast a function pointer. Found while testing new command line parse logic. Bugfix on 1293835440dd4debf6fbfc66e755d9b9384aa362, which implemented 6752: Not in any released tor.
| * | | | | Add '--digests' to "that which implies --hush."Nick Mathewson2013-09-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | And have these various commandline options imply "hush", not "quiet", since we like to see warnings.
| * | | | | Integration test for parsing arguments on the commandlineNick Mathewson2013-09-13
| | | | | | | | | | | | | | | | | | | | | | | | (incomplete)
| * | | | | Disallow --hash-password with no commandline arguments.Nick Mathewson2013-09-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes bug 9573. Bugfix on 59453ac6e in 0.0.9pre5, which fixed a crash in a silly way.
| * | | | | Make config_parse_commandline table-driven for its list of cmdline argsNick Mathewson2013-09-13
| | | | | |
| * | | | | Use commandline parser for other optionsNick Mathewson2013-09-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These were previously allowed only in the initial position: --help, -h , --version, --digests, --list-torrc-options
| * | | | | Expose commandline parser so that we can use it for --quiet,etc.Nick Mathewson2013-09-13
| | | | | | | | | | | | | | | | | | | | | | | | Fix for bug 9578.
| * | | | | Patch for 4647 (rewrite command line parser)Cristian Toader2013-09-13
| |/ / / /
* | | | | Merge remote-tracking branch 'ctoader/gsoc-cap-stage2'Nick Mathewson2013-09-13
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/common/sandbox.c
| * | | | | fixed compilation bug on i386 due to previous fixCristian Toader2013-09-12
| | | | | |
| * | | | | bug fix: syscalls send and recv not supported for x86_64 with libseccomp 1.0.1Cristian Toader2013-09-12
| | | | | |
| * | | | | remove debugging codeCristian Toader2013-09-12
| | | | | |
| * | | | | added extra buffer and limit to mprotect not to exceed the length of that bufferCristian Toader2013-09-12
| | | | | |
| * | | | | Fix osx compilation again, hopefully better this time.Nick Mathewson2013-09-11
| | | | | |
| * | | | | added filter protection for string parameter memoryCristian Toader2013-09-10
| | | | | |
| * | | | | fixed socket syscall bugCristian Toader2013-09-10
| | | | | |
| * | | | | fixed compilation error on i386 linux by moving sandbox_cfg_t definitionCristian Toader2013-09-10
| | | | | |
| * | | | | Fix check-spacesNick Mathewson2013-09-09
| | | | | |
| * | | | | Fix compilation on OSXNick Mathewson2013-09-09
| | | | | |
| * | | | | Do not try to add non-existent syscalls.Nick Mathewson2013-09-09
| | | | | |
| * | | | | Build correctly with older libeventsNick Mathewson2013-09-09
| | | | | |
| * | | | | Fix a warning related to SCMP_CMP definition in header.Nick Mathewson2013-09-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SCMP_CMP(a,b,c) leaves the fourth field of the structure undefined, giving a missing-initializer error. All of our uses are three-argument, so I'm overriding the default.
| * | | | | Fix most of the --enable-gcc-warnings warnings in the sandbox codeNick Mathewson2013-09-09
| | | | | |
| * | | | | Remove a usage of free()Nick Mathewson2013-09-09
| | | | | |
| * | | | | Basic compilation fixes.Nick Mathewson2013-09-09
| | | | | |
| * | | | | added missing documentation for sandbox functionsCristian Toader2013-09-06
| | | | | |
| * | | | | passing hints as a const pointer to sandbox_getaddrinfo(), also one tor_free ↵Cristian Toader2013-09-06
| | | | | | | | | | | | | | | | | | | | | | | | macro fails to compile..
| * | | | | replaced strdup with tor_strdupCristian Toader2013-09-06
| | | | | |
| * | | | | replaced malloc/free with tor_malloc/tor_freeCristian Toader2013-09-06
| | | | | |
| * | | | | switched string lengths from int to size_t in prot_strings()Cristian Toader2013-09-06
| | | | | |
| * | | | | fixed bug where sandbox_getaddrinfo() would fail when -Sandbox is 0Cristian Toader2013-09-03
| | | | | |
| * | | | | switched to a more generic way of handling the sandbox configurationCristian Toader2013-09-02
| | | | | |
| * | | | | added contingency message to test for sandbox_getaddrinfoCristian Toader2013-09-02
| | | | | |
| * | | | | make check-spaces fixCristian Toader2013-09-02
| | | | | |
| * | | | | changed how sb getaddrinfo works such that it supports storing multiple resultsCristian Toader2013-09-02
| | | | | |
| * | | | | make check-spaces fixCristian Toader2013-08-29
| | | | | |
| * | | | | switched from multiple mmap to oneCristian Toader2013-08-29
| | | | | |