[tor-commits] [tor/master] Declare the subsystem structure.

2018-11-09 Thread nickm
commit 0ce1f2d46646fd73abee56888650288055f16a53 Author: Nick Mathewson Date: Thu Nov 1 08:18:29 2018 -0400 Declare the subsystem structure. --- src/include.am | 1 + src/lib/subsys/.may_include | 1 + src/lib/subsys/include.am | 3 +++ src/lib/subsys/subsys.h | 63

[tor-commits] [tor/master] Move networking startup/cleanup logic into a subsystem.

2018-11-09 Thread nickm
commit cfe5b35edb38cef6312ef0b4ae44fb0e20342706 Author: Nick Mathewson Date: Fri Nov 2 11:11:21 2018 -0400 Move networking startup/cleanup logic into a subsystem. --- src/app/main/main.c | 19 --- src/app/main/subsystem_list.c | 2 ++ src/lib/net/.may_include

[tor-commits] [tor/master] Make initialization for the "err" library into a subsystem.

2018-11-09 Thread nickm
commit 175153a3290b3987faacac9d5390e87e1ad4a457 Author: Nick Mathewson Date: Thu Nov 1 12:40:55 2018 -0400 Make initialization for the "err" library into a subsystem. --- src/app/main/main.c | 10 -- src/app/main/subsystem_list.c | 4 +++- src/lib/err/.may_include

[tor-commits] [tor/master] Explain that configuration should happen elsewhere, but not init.

2018-11-09 Thread nickm
commit 4fe4bcf8a10967a668895e962099f50635ba9e4b Author: Nick Mathewson Date: Fri Nov 9 10:55:18 2018 -0500 Explain that configuration should happen elsewhere, but not init. --- src/lib/subsys/subsys.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib/subsys/subsys.h

[tor-commits] [tor/master] Make tortls use the subsystems interface

2018-11-09 Thread nickm
commit 32b23a4c40880591ecadab59f932f4a4c1e7560a Author: Nick Mathewson Date: Fri Nov 2 18:46:35 2018 -0400 Make tortls use the subsystems interface This one only needs a shutdown right now. --- src/app/main/main.c | 1 - src/app/main/subsystem_list.c | 2 ++

[tor-commits] [tor/master] Code to manage the list of subsystems.

2018-11-09 Thread nickm
commit 7bb76b24cf755799b7950ef078ac5ccf4d6e3a8a Author: Nick Mathewson Date: Thu Nov 1 11:51:33 2018 -0400 Code to manage the list of subsystems. --- src/app/main/main.c | 6 ++ src/app/main/subsysmgr.c | 130 ++

[tor-commits] [tor/master] Add a subsystem for our threading support

2018-11-09 Thread nickm
commit b8c50eabfee1bd9f5ed03f8ec569cc53b980f1d1 Author: Nick Mathewson Date: Thu Nov 1 13:14:43 2018 -0400 Add a subsystem for our threading support --- src/app/main/main.c | 1 - src/app/main/subsystem_list.c | 2 ++ src/lib/thread/.may_include | 1 +

[tor-commits] [tor/master] changes file for subsystems api (28330)

2018-11-09 Thread nickm
commit adecda753996611e9a5b82c5fa87ea78ec683806 Author: Nick Mathewson Date: Mon Nov 5 09:42:16 2018 -0500 changes file for subsystems api (28330) --- changes/subsystems | 6 ++ 1 file changed, 6 insertions(+) diff --git a/changes/subsystems b/changes/subsystems new file mode 100644

[tor-commits] [tor/master] Make the windows process parameter initialization a subsystem

2018-11-09 Thread nickm
commit 178c1821b2115972ce3c3f194d1fcbd0d75ca364 Author: Nick Mathewson Date: Thu Nov 1 12:55:10 2018 -0400 Make the windows process parameter initialization a subsystem Also, move it from "main" into lib/process --- src/app/main/main.c | 29 --

[tor-commits] [tor/master] Turn the wallclock module into a subsystem.

2018-11-09 Thread nickm
commit a0ee54549fec3ae710ab5e3623d707bd08adcafe Author: Nick Mathewson Date: Thu Nov 1 13:34:07 2018 -0400 Turn the wallclock module into a subsystem. (This may be slightly gratuitous.) --- src/app/main/main.c | 1 - src/app/main/subsystem_list.c | 4 +++-

[tor-commits] [tor/master] Move monotonic time setup into a subsystem

2018-11-09 Thread nickm
commit 207253df8d7c040840c7f4305534e6979bfc7bf7 Author: Nick Mathewson Date: Fri Nov 2 18:09:44 2018 -0400 Move monotonic time setup into a subsystem --- src/app/main/main.c | 2 -- src/app/main/subsystem_list.c | 2 ++ src/lib/time/.may_include | 1 +

[tor-commits] [tor/master] Add crypto module as a subsystem.

2018-11-09 Thread nickm
commit 50436ccea4bd200e45196ccce7acff28f293a4de Author: Nick Mathewson Date: Fri Nov 2 11:21:06 2018 -0400 Add crypto module as a subsystem. --- src/app/main/main.c | 7 --- src/app/main/subsystem_list.c | 2 ++ src/lib/crypt_ops/.may_include | 1 +

[tor-commits] [tor/master] Turn the logging code into a subsystem

2018-11-09 Thread nickm
commit d3e4afcc9b835e0f862207ef16d7e706ceea9ce1 Author: Nick Mathewson Date: Thu Nov 1 13:26:33 2018 -0400 Turn the logging code into a subsystem --- src/app/main/main.c | 3 --- src/app/main/subsystem_list.c | 2 ++ src/lib/log/.may_include | 1 + src/lib/log/include.am

[tor-commits] [tor/master] Use subsystems manager for subsystems used in tests.

2018-11-09 Thread nickm
commit 05b54f6a6a24ebdb47de4f7e41cf94f2f6be93bd Author: Nick Mathewson Date: Thu Nov 1 14:13:36 2018 -0400 Use subsystems manager for subsystems used in tests. --- src/lib/subsys/subsys.h| 4 src/test/bench.c | 7 --- src/test/fuzz/fuzzing_common.c | 9

[tor-commits] [tor/master] Move prefork, postfork, and thread-exit hooks into subsys

2018-11-09 Thread nickm
commit cad61f0f6de48c6eab6e811a081f154b03de57b8 Author: Nick Mathewson Date: Fri Nov 2 18:00:56 2018 -0400 Move prefork, postfork, and thread-exit hooks into subsys So far, crypto is the only module that uses them, but others are likely to do so in the future. ---

[tor-commits] [tor/master] Turn "compress" into a subsystem.

2018-11-09 Thread nickm
commit 019a044e5e6586fb42a171cb98aea15a72bd5a13 Author: Nick Mathewson Date: Fri Nov 2 18:34:56 2018 -0400 Turn "compress" into a subsystem. --- src/app/main/main.c | 2 -- src/app/main/subsystem_list.c | 2 ++ src/lib/compress/.may_include | 1 +

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

2018-11-09 Thread nickm
commit bf4f55a13da783083b0c76decd6ebf475a63ebd0 Merge: 5d73f87ce 60d108123 Author: Nick Mathewson Date: Fri Nov 9 15:01:49 2018 -0500 Merge branch 'subsystems' .gitignore| 2 + Makefile.am | 2 + changes/subsystems

[tor-commits] [tor/master] Move the code that knows our tor version into a lowest-level lib

2018-11-09 Thread nickm
commit 6e7ff8cba0efaf803e3ef5b5aba4123633fe0658 Author: Nick Mathewson Date: Thu Nov 1 12:33:22 2018 -0400 Move the code that knows our tor version into a lowest-level lib --- .gitignore| 2 ++ Makefile.am | 2 ++

[tor-commits] [tor/master] Log before performing a subsystem operation

2018-11-09 Thread nickm
commit 60d10812368458cb88aa9f9d628c49766d4bb490 Author: Nick Mathewson Date: Fri Nov 9 11:56:26 2018 -0500 Log before performing a subsystem operation --- src/app/main/subsysmgr.c | 27 +-- 1 file changed, 21 insertions(+), 6 deletions(-) diff --git

[tor-commits] [tor/master] Rename subsystem callback functions to make them consistent

2018-11-09 Thread nickm
commit c6336727cac937b4b5ca38c9b49ed3a66ce0b579 Author: Nick Mathewson Date: Fri Nov 9 11:12:12 2018 -0500 Rename subsystem callback functions to make them consistent --- src/lib/compress/compress.c | 8 +++- src/lib/crypt_ops/crypto_init.c | 32 +---

[tor-commits] [tor/master] Document that subsystem callbacks are optional.

2018-11-09 Thread nickm
commit 61695e3d622dfcc196b8b829842f2b12fecebeab Author: Nick Mathewson Date: Fri Nov 9 10:58:20 2018 -0500 Document that subsystem callbacks are optional. --- src/lib/subsys/subsys.h | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib/subsys/subsys.h

[tor-commits] [tor/master] fixup! Make initialization for the "err" library into a subsystem.

2018-11-09 Thread nickm
commit e80595f562e199049a41fdf1f3e12baced7e74d5 Author: Nick Mathewson Date: Fri Nov 9 11:00:31 2018 -0500 fixup! Make initialization for the "err" library into a subsystem. Check for failure to install backtrace handler. --- src/lib/err/torerr_sys.c | 3 ++- 1 file changed, 2

[tor-commits] [tor/master] Annotate subsystem list with their levels.

2018-11-09 Thread nickm
commit 91355c0fac0f90ba286edb3d3f12d71d250be16d Author: Nick Mathewson Date: Fri Nov 9 22:17:18 2018 -0500 Annotate subsystem list with their levels. --- src/app/main/subsystem_list.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git

[tor-commits] [tor/master] Add list of levels in subsystem_list.c

2018-11-09 Thread nickm
commit ba722e47995e106b46d848263638fa3009687cd9 Author: Nick Mathewson Date: Fri Nov 9 11:15:27 2018 -0500 Add list of levels in subsystem_list.c --- src/app/main/subsystem_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/main/subsystem_list.c

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

2018-11-09 Thread translation
commit b80d6216284ff2871f96e8eac51442b0f5fa4752 Author: Translation commit bot Date: Fri Nov 9 20:16:09 2018 + Update translations for tails-misc_completed --- fr.po | 90 +-- 1 file changed, 45 insertions(+), 45

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

2018-11-09 Thread translation
commit 0f65a3f9c3bd0efcbaec58bdaba2a0d66ad26ac4 Author: Translation commit bot Date: Fri Nov 9 20:16:04 2018 + Update translations for tails-misc --- fr.po | 90 +-- 1 file changed, 45 insertions(+), 45 deletions(-) diff

[tor-commits] [translation/support-portal] Update translations for support-portal

2018-11-09 Thread translation
commit 272dbbc9e3e525cd18198cf83959b1c378eceb80 Author: Translation commit bot Date: Fri Nov 9 19:49:06 2018 + Update translations for support-portal --- contents+fr.po | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/contents+fr.po

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

2018-11-09 Thread translation
commit c569e63a776adace737c67f21f87cb3a0e11a078 Author: Translation commit bot Date: Fri Nov 9 20:19:03 2018 + Update translations for whisperback --- fr/fr.po | 19 ++- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/fr/fr.po b/fr/fr.po index

[tor-commits] [translation/support-portal] Update translations for support-portal

2018-11-09 Thread translation
commit a69cfd7f24c60e851bba3437214560b33475c578 Author: Translation commit bot Date: Fri Nov 9 20:19:14 2018 + Update translations for support-portal --- contents+fr.po | 50 -- 1 file changed, 24 insertions(+), 26 deletions(-) diff

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

2018-11-09 Thread translation
commit 754ae4e98b9a729550a8a07f9b6075203f8ac10c Author: Translation commit bot Date: Fri Nov 9 20:19:08 2018 + Update translations for whisperback_completed --- fr/fr.po | 19 ++- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/fr/fr.po b/fr/fr.po index

[tor-commits] [tor-launcher/master] Bug 28039: Enable dump() if log method is 0

2018-11-09 Thread gk
commit 80749f18beb93f94cb6be9a5e2c17438ff133ab8 Author: Georg Koppen Date: Mon Oct 22 11:40:28 2018 + Bug 28039: Enable dump() if log method is 0 Without setting `browser.dom.window.dump.enabled` explicitly to `true` it is not possible anymore to capture output in the

[tor-commits] [torbutton/master] Bug 28039: Enable dump() if log method is 0

2018-11-09 Thread gk
commit 923fd8500a16b0a343450621a62ea10175c38b3d Author: Georg Koppen Date: Mon Oct 22 11:37:19 2018 + Bug 28039: Enable dump() if log method is 0 Without setting `browser.dom.window.dump.enabled` explicitly to `true` it is not possible anymore to capture output in the

[tor-commits] [translation/tor-browser-manual] Update translations for tor-browser-manual

2018-11-09 Thread translation
commit 4589c6a80cd23afeb9145bf184fa5c25499dd1f2 Author: Translation commit bot Date: Fri Nov 9 15:17:30 2018 + Update translations for tor-browser-manual --- cs/cs.po | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/cs/cs.po b/cs/cs.po index

[tor-commits] [translation/support-portal] Update translations for support-portal

2018-11-09 Thread translation
commit b0e48c5d25ac91e7a6b7ca6901a63fd7115c40a9 Author: Translation commit bot Date: Fri Nov 9 15:19:07 2018 + Update translations for support-portal --- contents+fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contents+fr.po b/contents+fr.po index

[tor-commits] [tor/maint-0.3.3] Merge branch 'bug28245_029' into maint-0.2.9

2018-11-09 Thread nickm
commit 45e0004b690b913dc991936ca0228a35fd5c7d1e Merge: 0a824bd88 1ba1a1cec Author: Nick Mathewson Date: Fri Nov 9 10:49:43 2018 -0500 Merge branch 'bug28245_029' into maint-0.2.9 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/maint-0.2.9] Always declare groups when building with openssl 1.1.1 APIs

2018-11-09 Thread nickm
commit 1ba1a1ceca4501b673bfc56b15f1063ce35afe4e Author: Nick Mathewson Date: Fri Nov 9 10:10:25 2018 -0500 Always declare groups when building with openssl 1.1.1 APIs Failing to do on clients was causing TLS 1.3 negotiation to fail. Fixes bug 28245; bugfix on 0.2.9.15,

[tor-commits] [tor/maint-0.3.4] Merge branch 'maint-0.2.9' into maint-0.3.3

2018-11-09 Thread nickm
commit c06b7f090cfe49cef1b174d69277534eb0441696 Merge: 6bd069630 45e0004b6 Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.2.9' into maint-0.3.3 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/maint-0.3.5] Always declare groups when building with openssl 1.1.1 APIs

2018-11-09 Thread nickm
commit 1ba1a1ceca4501b673bfc56b15f1063ce35afe4e Author: Nick Mathewson Date: Fri Nov 9 10:10:25 2018 -0500 Always declare groups when building with openssl 1.1.1 APIs Failing to do on clients was causing TLS 1.3 negotiation to fail. Fixes bug 28245; bugfix on 0.2.9.15,

[tor-commits] [tor/maint-0.3.4] Always declare groups when building with openssl 1.1.1 APIs

2018-11-09 Thread nickm
commit 1ba1a1ceca4501b673bfc56b15f1063ce35afe4e Author: Nick Mathewson Date: Fri Nov 9 10:10:25 2018 -0500 Always declare groups when building with openssl 1.1.1 APIs Failing to do on clients was causing TLS 1.3 negotiation to fail. Fixes bug 28245; bugfix on 0.2.9.15,

[tor-commits] [tor/maint-0.3.5] Merge branch 'maint-0.2.9' into maint-0.3.3

2018-11-09 Thread nickm
commit c06b7f090cfe49cef1b174d69277534eb0441696 Merge: 6bd069630 45e0004b6 Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.2.9' into maint-0.3.3 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/maint-0.3.4] Merge branch 'bug28245_029' into maint-0.2.9

2018-11-09 Thread nickm
commit 45e0004b690b913dc991936ca0228a35fd5c7d1e Merge: 0a824bd88 1ba1a1cec Author: Nick Mathewson Date: Fri Nov 9 10:49:43 2018 -0500 Merge branch 'bug28245_029' into maint-0.2.9 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/master] Always declare groups when building with openssl 1.1.1 APIs

2018-11-09 Thread nickm
commit 1ba1a1ceca4501b673bfc56b15f1063ce35afe4e Author: Nick Mathewson Date: Fri Nov 9 10:10:25 2018 -0500 Always declare groups when building with openssl 1.1.1 APIs Failing to do on clients was causing TLS 1.3 negotiation to fail. Fixes bug 28245; bugfix on 0.2.9.15,

[tor-commits] [tor/master] Merge branch 'maint-0.2.9' into maint-0.3.3

2018-11-09 Thread nickm
commit c06b7f090cfe49cef1b174d69277534eb0441696 Merge: 6bd069630 45e0004b6 Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.2.9' into maint-0.3.3 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/master] Merge branch 'maint-0.3.5'

2018-11-09 Thread nickm
commit 5d73f87cedaf58fd6e7a53a230b311f5e8b51b73 Merge: 7e969a7b2 2ac2d0a42 Author: Nick Mathewson Date: Fri Nov 9 10:49:48 2018 -0500 Merge branch 'maint-0.3.5' changes/bug28245 | 6 ++ configure.ac | 1 + src/lib/tls/tortls_openssl.c | 17

[tor-commits] [tor/maint-0.3.5] Merge branch 'maint-0.3.3' into maint-0.3.4

2018-11-09 Thread nickm
commit 591a189fa42c87d706b4395ac6e70110f88b4fe9 Merge: 5acf6f871 c06b7f090 Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.3.3' into maint-0.3.4 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/maint-0.3.3] Merge branch 'maint-0.2.9' into maint-0.3.3

2018-11-09 Thread nickm
commit c06b7f090cfe49cef1b174d69277534eb0441696 Merge: 6bd069630 45e0004b6 Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.2.9' into maint-0.3.3 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/maint-0.3.3] Always declare groups when building with openssl 1.1.1 APIs

2018-11-09 Thread nickm
commit 1ba1a1ceca4501b673bfc56b15f1063ce35afe4e Author: Nick Mathewson Date: Fri Nov 9 10:10:25 2018 -0500 Always declare groups when building with openssl 1.1.1 APIs Failing to do on clients was causing TLS 1.3 negotiation to fail. Fixes bug 28245; bugfix on 0.2.9.15,

[tor-commits] [tor/maint-0.2.9] Merge branch 'bug28245_029' into maint-0.2.9

2018-11-09 Thread nickm
commit 45e0004b690b913dc991936ca0228a35fd5c7d1e Merge: 0a824bd88 1ba1a1cec Author: Nick Mathewson Date: Fri Nov 9 10:49:43 2018 -0500 Merge branch 'bug28245_029' into maint-0.2.9 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/maint-0.3.4] Merge branch 'maint-0.3.3' into maint-0.3.4

2018-11-09 Thread nickm
commit 591a189fa42c87d706b4395ac6e70110f88b4fe9 Merge: 5acf6f871 c06b7f090 Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.3.3' into maint-0.3.4 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/release-0.2.9] Merge branch 'maint-0.2.9' into release-0.2.9

2018-11-09 Thread nickm
commit 5689caeda1090a77a46ee6d3cc97bec9ed7a74f7 Merge: 2a83cca83 45e0004b6 Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.2.9' into release-0.2.9 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/maint-0.3.5] Merge branch 'bug28245_029' into maint-0.2.9

2018-11-09 Thread nickm
commit 45e0004b690b913dc991936ca0228a35fd5c7d1e Merge: 0a824bd88 1ba1a1cec Author: Nick Mathewson Date: Fri Nov 9 10:49:43 2018 -0500 Merge branch 'bug28245_029' into maint-0.2.9 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/master] Merge branch 'maint-0.3.4' into maint-0.3.5

2018-11-09 Thread nickm
commit 2ac2d0a426d1cd0ba1b2004d349b28e7acda0666 Merge: 8db047b92 591a189fa Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.3.4' into maint-0.3.5 changes/bug28245 | 6 ++ configure.ac | 1 + src/lib/tls/tortls_openssl.c |

[tor-commits] [tor/master] Merge branch 'maint-0.3.3' into maint-0.3.4

2018-11-09 Thread nickm
commit 591a189fa42c87d706b4395ac6e70110f88b4fe9 Merge: 5acf6f871 c06b7f090 Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.3.3' into maint-0.3.4 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/master] Merge branch 'bug28245_029' into maint-0.2.9

2018-11-09 Thread nickm
commit 45e0004b690b913dc991936ca0228a35fd5c7d1e Merge: 0a824bd88 1ba1a1cec Author: Nick Mathewson Date: Fri Nov 9 10:49:43 2018 -0500 Merge branch 'bug28245_029' into maint-0.2.9 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/release-0.3.5] Merge branch 'maint-0.3.5' into release-0.3.5

2018-11-09 Thread nickm
commit 78b85f760c99c8561a1248e27861d694f4a54a8d Merge: 016bf9423 2ac2d0a42 Author: Nick Mathewson Date: Fri Nov 9 10:49:48 2018 -0500 Merge branch 'maint-0.3.5' into release-0.3.5 changes/bug28245 | 6 ++ configure.ac | 1 + src/lib/tls/tortls_openssl.c

[tor-commits] [tor/release-0.3.5] Merge branch 'bug28245_029' into maint-0.2.9

2018-11-09 Thread nickm
commit 45e0004b690b913dc991936ca0228a35fd5c7d1e Merge: 0a824bd88 1ba1a1cec Author: Nick Mathewson Date: Fri Nov 9 10:49:43 2018 -0500 Merge branch 'bug28245_029' into maint-0.2.9 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/release-0.3.5] Merge branch 'maint-0.2.9' into maint-0.3.3

2018-11-09 Thread nickm
commit c06b7f090cfe49cef1b174d69277534eb0441696 Merge: 6bd069630 45e0004b6 Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.2.9' into maint-0.3.3 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/release-0.3.5] Merge branch 'maint-0.3.3' into maint-0.3.4

2018-11-09 Thread nickm
commit 591a189fa42c87d706b4395ac6e70110f88b4fe9 Merge: 5acf6f871 c06b7f090 Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.3.3' into maint-0.3.4 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/release-0.3.5] Merge branch 'maint-0.3.4' into maint-0.3.5

2018-11-09 Thread nickm
commit 2ac2d0a426d1cd0ba1b2004d349b28e7acda0666 Merge: 8db047b92 591a189fa Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.3.4' into maint-0.3.5 changes/bug28245 | 6 ++ configure.ac | 1 + src/lib/tls/tortls_openssl.c |

[tor-commits] [tor/release-0.3.5] Always declare groups when building with openssl 1.1.1 APIs

2018-11-09 Thread nickm
commit 1ba1a1ceca4501b673bfc56b15f1063ce35afe4e Author: Nick Mathewson Date: Fri Nov 9 10:10:25 2018 -0500 Always declare groups when building with openssl 1.1.1 APIs Failing to do on clients was causing TLS 1.3 negotiation to fail. Fixes bug 28245; bugfix on 0.2.9.15,

[tor-commits] [tor/release-0.3.4] Merge branch 'maint-0.3.4' into release-0.3.4

2018-11-09 Thread nickm
commit 3ce2d8c4adb15268c330264cbd4113294a02c8ad Merge: 336f1fad3 591a189fa Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.3.4' into release-0.3.4 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/maint-0.3.5] Merge branch 'maint-0.3.4' into maint-0.3.5

2018-11-09 Thread nickm
commit 2ac2d0a426d1cd0ba1b2004d349b28e7acda0666 Merge: 8db047b92 591a189fa Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.3.4' into maint-0.3.5 changes/bug28245 | 6 ++ configure.ac | 1 + src/lib/tls/tortls_openssl.c |

[tor-commits] [tor/release-0.3.3] Merge branch 'bug28245_029' into maint-0.2.9

2018-11-09 Thread nickm
commit 45e0004b690b913dc991936ca0228a35fd5c7d1e Merge: 0a824bd88 1ba1a1cec Author: Nick Mathewson Date: Fri Nov 9 10:49:43 2018 -0500 Merge branch 'bug28245_029' into maint-0.2.9 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [translation/support-portal] Update translations for support-portal

2018-11-09 Thread translation
commit 693a985b209bd42a51483b7ebc26118c80908069 Author: Translation commit bot Date: Fri Nov 9 15:49:07 2018 + Update translations for support-portal --- contents+fr.po | 46 +- 1 file changed, 25 insertions(+), 21 deletions(-) diff --git

[tor-commits] [tor/release-0.2.9] Merge branch 'bug28245_029' into maint-0.2.9

2018-11-09 Thread nickm
commit 45e0004b690b913dc991936ca0228a35fd5c7d1e Merge: 0a824bd88 1ba1a1cec Author: Nick Mathewson Date: Fri Nov 9 10:49:43 2018 -0500 Merge branch 'bug28245_029' into maint-0.2.9 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/release-0.3.3] Always declare groups when building with openssl 1.1.1 APIs

2018-11-09 Thread nickm
commit 1ba1a1ceca4501b673bfc56b15f1063ce35afe4e Author: Nick Mathewson Date: Fri Nov 9 10:10:25 2018 -0500 Always declare groups when building with openssl 1.1.1 APIs Failing to do on clients was causing TLS 1.3 negotiation to fail. Fixes bug 28245; bugfix on 0.2.9.15,

[tor-commits] [tor/release-0.2.9] Always declare groups when building with openssl 1.1.1 APIs

2018-11-09 Thread nickm
commit 1ba1a1ceca4501b673bfc56b15f1063ce35afe4e Author: Nick Mathewson Date: Fri Nov 9 10:10:25 2018 -0500 Always declare groups when building with openssl 1.1.1 APIs Failing to do on clients was causing TLS 1.3 negotiation to fail. Fixes bug 28245; bugfix on 0.2.9.15,

[tor-commits] [tor/release-0.3.3] Merge branch 'maint-0.2.9' into maint-0.3.3

2018-11-09 Thread nickm
commit c06b7f090cfe49cef1b174d69277534eb0441696 Merge: 6bd069630 45e0004b6 Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.2.9' into maint-0.3.3 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/release-0.3.3] Merge branch 'maint-0.3.3' into release-0.3.3

2018-11-09 Thread nickm
commit 93cf98cbb160f31804d129e6e3e33355883fc1b2 Merge: dd0b85179 c06b7f090 Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.3.3' into release-0.3.3 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/release-0.3.4] Merge branch 'maint-0.2.9' into maint-0.3.3

2018-11-09 Thread nickm
commit c06b7f090cfe49cef1b174d69277534eb0441696 Merge: 6bd069630 45e0004b6 Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.2.9' into maint-0.3.3 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/release-0.3.4] Always declare groups when building with openssl 1.1.1 APIs

2018-11-09 Thread nickm
commit 1ba1a1ceca4501b673bfc56b15f1063ce35afe4e Author: Nick Mathewson Date: Fri Nov 9 10:10:25 2018 -0500 Always declare groups when building with openssl 1.1.1 APIs Failing to do on clients was causing TLS 1.3 negotiation to fail. Fixes bug 28245; bugfix on 0.2.9.15,

[tor-commits] [tor/release-0.3.4] Merge branch 'maint-0.3.3' into maint-0.3.4

2018-11-09 Thread nickm
commit 591a189fa42c87d706b4395ac6e70110f88b4fe9 Merge: 5acf6f871 c06b7f090 Author: Nick Mathewson Date: Fri Nov 9 10:49:47 2018 -0500 Merge branch 'maint-0.3.3' into maint-0.3.4 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [tor/release-0.3.4] Merge branch 'bug28245_029' into maint-0.2.9

2018-11-09 Thread nickm
commit 45e0004b690b913dc991936ca0228a35fd5c7d1e Merge: 0a824bd88 1ba1a1cec Author: Nick Mathewson Date: Fri Nov 9 10:49:43 2018 -0500 Merge branch 'bug28245_029' into maint-0.2.9 changes/bug28245| 6 ++ configure.ac| 1 + src/common/tortls.c | 17 + 3

[tor-commits] [translation/support-portal] Update translations for support-portal

2018-11-09 Thread translation
commit 5df07ea9ef75c94af8eccc8e5b51dcfa72948d5d Author: Translation commit bot Date: Fri Nov 9 16:19:17 2018 + Update translations for support-portal --- contents+fr.po | 40 1 file changed, 20 insertions(+), 20 deletions(-) diff --git

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

2018-11-09 Thread translation
commit 1452bc6fbfcc63ef8d99f0928a119ac227fdaeb9 Author: Translation commit bot Date: Fri Nov 9 18:15:17 2018 + Update translations for bridgedb --- gu/LC_MESSAGES/bridgedb.po | 27 ++- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git

[tor-commits] [translation/support-portal] Update translations for support-portal

2018-11-09 Thread translation
commit 846996c49f8b4ea01ff1233fefed45686c99e193 Author: Translation commit bot Date: Fri Nov 9 18:19:59 2018 + Update translations for support-portal --- contents+fr.po | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/contents+fr.po b/contents+fr.po index

[tor-commits] [translation/support-portal] Update translations for support-portal

2018-11-09 Thread translation
commit 4c60c1bba1c50941be90812026d7599297c90029 Author: Translation commit bot Date: Fri Nov 9 18:49:34 2018 + Update translations for support-portal --- contents+fr.po | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/contents+fr.po b/contents+fr.po

[tor-commits] [doctor/master] Track txtorcon's NetBSD packages

2018-11-09 Thread atagar
commit e3609021d30fc879f0e644c3cb9fea3cd0929846 Author: Damian Johnson Date: Thu Nov 8 18:04:24 2018 -0800 Track txtorcon's NetBSD packages Txtorcon also now has a NetBSD package so tracking that as well. --- package_versions.py | 24 +--- 1 file changed, 13

[tor-commits] [doctor/master] Update mac links

2018-11-09 Thread atagar
commit b49dfdb2f8fbc565c7b95ca665c3a84aafb9f8de Author: Damian Johnson Date: Fri Nov 9 11:08:32 2018 -0800 Update mac links Our wiki now links to different pages. Scanning the same for version information. Unfortunately the page line with the version don't have any

[tor-commits] [doctor/master] Add torsock's netbsd package

2018-11-09 Thread atagar
commit 6f45e9eed5bd3741c7f6df29560be588b437666f Author: Damian Johnson Date: Fri Nov 9 10:52:02 2018 -0800 Add torsock's netbsd package The wiki no longer points toward the 'wip' page so we can now include it like our other packages. --- package_versions.py | 1 + 1 file

[tor-commits] [doctor/master] Drop txtorcon's deb

2018-11-09 Thread atagar
commit ec5e3d6bdfb83da00b9b96b26d28c00808f315c5 Author: Damian Johnson Date: Fri Nov 9 10:38:16 2018 -0800 Drop txtorcon's deb The page we link to has been gone for about a week. A few days ago I reached out to Iain to see if the package was renamed but haven't yet heard back.

[tor-commits] [doctor/master] Replace package wiki index table

2018-11-09 Thread atagar
commit c3bcf445de7732ea94421d7083e6f16c060d271d Author: Damian Johnson Date: Thu Nov 8 18:20:49 2018 -0800 Replace package wiki index table Our PACKAGES constant match our wiki's layout so there's no need to have a separate dictionary with static indices. In the process also

[tor-commits] [nyx/master] Add the pkg_add command for netbsd

2018-11-09 Thread atagar
commit 0547b1ef2fdf01442d9071a82f8144766d42d092 Author: Damian Johnson Date: Fri Nov 9 11:13:15 2018 -0800 Add the pkg_add command for netbsd --- web/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/web/index.html b/web/index.html index 7893cf5..4139c9b 100644 ---

[tor-commits] [stem/master] Add the netbsd pkg_add command

2018-11-09 Thread atagar
commit 12f7e55c40728e47bd9bf4699692d9408c11ee11 Author: Damian Johnson Date: Fri Nov 9 11:14:35 2018 -0800 Add the netbsd pkg_add command Command thanks to Riastradh... 21:12 < Riastradh> atagar: I'm on tor-packagers. For a quick command, either `pkg_add

[tor-commits] [translation/support-portal] Update translations for support-portal

2018-11-09 Thread translation
commit f65f93dcdec31e9909a897be0060e508e8efc406 Author: Translation commit bot Date: Fri Nov 9 19:19:10 2018 + Update translations for support-portal --- contents+fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contents+fr.po b/contents+fr.po index

[tor-commits] [translation/support-portal] Update translations for support-portal

2018-11-09 Thread translation
commit 59973b4f51186a4f45926db61fca9f6ce8915fcb Author: Translation commit bot Date: Fri Nov 9 17:49:18 2018 + Update translations for support-portal --- contents+fr.po | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/contents+fr.po b/contents+fr.po