[tor-commits] [tor/master] Fix typo in double_digest_map type

2015-08-18 Thread nickm
commit 63db8170ae3e70b161210241187d21bef72fbf40 Author: Sebastian Hahn Date: Fri Aug 14 02:12:35 2015 +0200 Fix typo in double_digest_map type --- src/or/dircollate.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/dircollate.c b/src/or/dircollate.c index 331e

[tor-commits] [tor/master] Use tabs in src/or/include.am

2015-08-18 Thread nickm
commit fe4c0a187dcc6ec8a14175dfc4c62334221d4239 Author: Sebastian Hahn Date: Tue Aug 18 04:30:02 2015 +0200 Use tabs in src/or/include.am --- src/or/include.am |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/or/include.am b/src/or/include.am index af33365

[tor-commits] [trunnel/master] Generate correct function signature for $type_encode

2015-08-18 Thread nickm
commit e0901b36e87c348dc3228961c7a833fa5a1b2d62 Author: Sebastian Hahn Date: Tue Aug 18 14:39:21 2015 +0200 Generate correct function signature for $type_encode --- lib/trunnel/CodeGen.py |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/trunnel/CodeGen.py b/lib/tr

[tor-commits] [tor/master] Multithreading support for event-queue code.

2015-08-18 Thread nickm
commit e2a6a7ec6178834c3de7a3be614679120e2c00c8 Author: Nick Mathewson Date: Wed Aug 12 10:10:11 2015 -0400 Multithreading support for event-queue code. --- src/or/control.c | 61 -- 1 file changed, 46 insertions(+), 15 deletions(-) di

[tor-commits] [tor/master] Log meaningful messages before failing on windows with threadlocal.

2015-08-18 Thread nickm
commit 087cf882c6a9ef6b9617d21ef26c19c47a4fc660 Author: Nick Mathewson Date: Tue Aug 18 08:37:15 2015 -0400 Log meaningful messages before failing on windows with threadlocal. --- src/common/compat_winthreads.c | 20 ++-- 1 file changed, 18 insertions(+), 2 deletions(-)

[tor-commits] [tor/master] Improve threadlocal documentation

2015-08-18 Thread nickm
commit 3d9952a3b14e83d265a09de9071dc3609e3a4cc9 Author: Nick Mathewson Date: Tue Aug 18 08:36:58 2015 -0400 Improve threadlocal documentation --- src/common/compat_threads.h |6 ++ 1 file changed, 6 insertions(+) diff --git a/src/common/compat_threads.h b/src/common/compat_threads

[tor-commits] [tor/master] Add comments for thread-local storage functions

2015-08-18 Thread nickm
commit e8fe77530ad6238dc16781b0032899f3affa778f Author: Nick Mathewson Date: Mon Aug 17 13:36:56 2015 -0400 Add comments for thread-local storage functions --- src/common/compat_threads.h | 17 + 1 file changed, 17 insertions(+) diff --git a/src/common/compat_threads.h b

[tor-commits] [tor/master] Refactor initialization logic for control-event-queue

2015-08-18 Thread nickm
commit 81f3572467583c54eb2a22c3af93f7c819796563 Author: Nick Mathewson Date: Wed Aug 12 09:35:26 2015 -0400 Refactor initialization logic for control-event-queue This puts the init logic in a separate function, which we will need once we have locking. --- src/or/config.c

[tor-commits] [tor/master] Remove obsolete event_format_t

2015-08-18 Thread nickm
commit 60c8fbf1ffad7c13556edc3582d2c27243865d54 Author: Nick Mathewson Date: Thu Jul 30 10:51:55 2015 -0400 Remove obsolete event_format_t We used to use this when we had some controllers that would accept long names and some that wouldn't. But it's been obsolete for a whi

[tor-commits] [tor/master] Refactor our logic for sending events to controllers

2015-08-18 Thread nickm
commit bab221f1131e3c0552b3564ea72800d1d4a8facf Author: Nick Mathewson Date: Thu Jul 30 10:43:37 2015 -0400 Refactor our logic for sending events to controllers Previously we'd put these strings right on the controllers' outbufs. But this could cause some trouble, for these rea

[tor-commits] [tor/master] Merge branch 'decouple_controller_events_squashed'

2015-08-18 Thread nickm
commit eafae7f677364175e384d0e2c79f05e7d300049d Merge: fe4c0a1 087cf88 Author: Nick Mathewson Date: Tue Aug 18 08:56:31 2015 -0400 Merge branch 'decouple_controller_events_squashed' changes/decouple_control_events |8 + src/common/compat_pthreads.c | 27 +++ src/common/compat

[tor-commits] [tor/master] Make the control/events test run TT_FORK

2015-08-18 Thread nickm
commit e507f9bf4280d1462876c6a5bfeaf549b19306f4 Author: Nick Mathewson Date: Wed Aug 12 09:34:26 2015 -0400 Make the control/events test run TT_FORK Some of them like to munge the global event mask, so it's important to have that behavior isolated. --- src/test/test_controller

[tor-commits] [tor/master] Use thread-local storage to block event_queue recursion.

2015-08-18 Thread nickm
commit 9ec94f1d22a87fbf86f721c6106f78f85b8be33c Author: Nick Mathewson Date: Wed Aug 12 10:49:19 2015 -0400 Use thread-local storage to block event_queue recursion. --- src/common/compat_pthreads.c | 27 +++ src/common/compat_threads.h| 13 +++ src/com

[tor-commits] [tor/master] Merge remote-tracking branch 'arma/bug16844-logs'

2015-08-18 Thread nickm
commit a7de5bd02e54afcacc9d7e5a7a95fd8856228c5b Merge: eafae7f b4732bd Author: Nick Mathewson Date: Tue Aug 18 09:19:39 2015 -0400 Merge remote-tracking branch 'arma/bug16844-logs' src/or/circuituse.c |3 +++ src/or/connection_edge.c |3 ++- src/or/relay.c | 12 ++

[tor-commits] [tor/master] Logs and debug info that I used for finding bug 16844

2015-08-18 Thread nickm
commit b4732bd2eab74f6b4a3611c13521d261679d924a Author: Roger Dingledine Date: Mon Aug 17 14:34:50 2015 -0400 Logs and debug info that I used for finding bug 16844 --- src/or/circuituse.c |3 +++ src/or/connection_edge.c |3 ++- src/or/relay.c | 12 3

[tor-commits] [trunnel/master] bump version to 1.4.3

2015-08-18 Thread nickm
commit 0795ce5eaeae12b54b8fa756cd51c35d818e36c1 Author: Nick Mathewson Date: Tue Aug 18 09:45:46 2015 -0400 bump version to 1.4.3 --- lib/trunnel/__init__.py |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/trunnel/__init__.py b/lib/trunnel/__init__.py index 574c1

[tor-commits] [tor/master] Update to latest trunnel

2015-08-18 Thread nickm
commit 988d208814e68162d78f66a033940f715a24834a Author: Nick Mathewson Date: Tue Aug 18 09:47:36 2015 -0400 Update to latest trunnel --- src/ext/trunnel/trunnel-impl.h |2 +- src/ext/trunnel/trunnel.c |2 +- src/ext/trunnel/trunnel.h |2 +- src/trunnel/ed25519_cert.c

[tor-commits] [tor/master] New TestingDirAuthVote{Exit, Guard, HSDir}IsStrict flags

2015-08-18 Thread nickm
commit 359faf5e4b4a88663201c2b42dd89a6f77569856 Author: teor Date: Wed May 6 23:40:23 2015 +1000 New TestingDirAuthVote{Exit,Guard,HSDir}IsStrict flags "option to prevent guard,exit,hsdir flag assignment" "A node will never receive the corresponding flag unless that no

[tor-commits] [tor/master] Merge remote-tracking branch 'teor/feature14882-TestingDirAuthVoteIsStrict-v3'

2015-08-18 Thread nickm
commit 2f5202c6362408df5aad8f57f8dfffbafcbe0833 Merge: 988d208 3acb27a Author: Nick Mathewson Date: Tue Aug 18 09:53:50 2015 -0400 Merge remote-tracking branch 'teor/feature14882-TestingDirAuthVoteIsStrict-v3' changes/feature14882-TestingDirAuthVoteIsStrict | 18 ++ doc/tor.1.txt

[tor-commits] [tor/master] Add unit tests for dirserv_set_routerstatus_testing

2015-08-18 Thread nickm
commit 3acb27af3db084166c61e0b40f89deea299df420 Author: teor Date: Tue Aug 18 21:50:15 2015 +1000 Add unit tests for dirserv_set_routerstatus_testing Test that TestingDirAuthVote{Exit,Guard,HSDir}[Strict] work on routersets matching all routers, one router, and no routers.

[tor-commits] [tor/master] Refactor TestingDirAuthVote* into dirserv_set_routerstatus_testing

2015-08-18 Thread nickm
commit d1c94dcbea76d4ddd8ccf6c2c94f2fe99ea570e2 Author: teor Date: Fri Aug 14 12:09:00 2015 +1000 Refactor TestingDirAuthVote* into dirserv_set_routerstatus_testing Make it easier to unit test TestingDirAuthVote{Exit,Guard,HSDir} by refactoring the code which sets flags based o

[tor-commits] [tor/master] Fix TestingDirAuthVoteHSDir docs: HSDir flag needs DirPort

2015-08-18 Thread nickm
commit 0cb82013cceba8ade6ae83e983b609df3a848f72 Author: teor Date: Wed May 6 23:37:38 2015 +1000 Fix TestingDirAuthVoteHSDir docs: HSDir flag needs DirPort Fix an error in the manual page and comments for TestingDirAuthVoteHSDir, which suggested that a HSDir required "ORPor

[tor-commits] [translation/torcheck_completed] Update translations for torcheck_completed

2015-08-18 Thread translation
commit 2be8e7114e937e6dde48bcadfff3e643b9672d65 Author: Translation commit bot Date: Tue Aug 18 16:15:14 2015 + Update translations for torcheck_completed --- ru/torcheck.po | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/ru/torcheck.po b/ru/torcheck.p

[tor-commits] [translation/torcheck] Update translations for torcheck

2015-08-18 Thread translation
commit a0174416a3d98bc7c330252a13b59a7d0666c2ab Author: Translation commit bot Date: Tue Aug 18 16:15:10 2015 + Update translations for torcheck --- ru/torcheck.po | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/ru/torcheck.po b/ru/torcheck.po index 98

[tor-commits] [translation/bridgedb_completed] Update translations for bridgedb_completed

2015-08-18 Thread translation
commit a58d833028ff075942d0b8c2e2daaf17b3cc1574 Author: Translation commit bot Date: Wed Aug 19 04:15:14 2015 + Update translations for bridgedb_completed --- es_AR/LC_MESSAGES/bridgedb.po | 385 + es_CO/LC_MESSAGES/bridgedb.po |9 +- 2 file

[tor-commits] [translation/bridgedb] Update translations for bridgedb

2015-08-18 Thread translation
commit 24c113465d2c0adbdb74ce6d94bc6a35cfd3e608 Author: Translation commit bot Date: Wed Aug 19 04:15:04 2015 + Update translations for bridgedb --- es_AR/LC_MESSAGES/bridgedb.po | 23 --- es_CO/LC_MESSAGES/bridgedb.po |9 + 2 files changed, 17 inserti

[tor-commits] [translation/tails-misc] Update translations for tails-misc

2015-08-18 Thread translation
commit 87f6eb8920ab1d233be4a039dc37ad720146c64f Author: Translation commit bot Date: Wed Aug 19 04:16:38 2015 + Update translations for tails-misc --- es_AR.po | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/es_AR.po b/es_AR.po index cebe943..7b06b2

[tor-commits] [translation/torbutton-branddtd] Update translations for torbutton-branddtd

2015-08-18 Thread translation
commit d3697db64bfbcb493f3c48bd6995825b10769602 Author: Translation commit bot Date: Wed Aug 19 04:16:55 2015 + Update translations for torbutton-branddtd --- es_AR/brand.dtd |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/es_AR/brand.dtd b/es_AR/brand.dtd

[tor-commits] [translation/torbutton-branddtd_completed] Update translations for torbutton-branddtd_completed

2015-08-18 Thread translation
commit 484ace19017db865c021200744c7fbe4a27f6319 Author: Translation commit bot Date: Wed Aug 19 04:17:00 2015 + Update translations for torbutton-branddtd_completed --- es_AR/brand.dtd |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/es_AR/brand.dtd b/es_AR/