[tor-commits] [tor/master] simplify we_use_microdescriptors_for_circuits()

2016-10-19 Thread nickm
commit f0fb55ad30ddcb620943490bf11f591d3b2ba694 Author: Roger Dingledine Date: Sun Oct 2 02:22:03 2016 -0400 simplify we_use_microdescriptors_for_circuits() --- src/or/microdesc.c | 9 +++-- 1 file changed, 3 insertions(+), 6 deletions(-) diff --git

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

2016-10-19 Thread nickm
commit 87e4b9259ad76ac12613bf569f45a2110ed0e400 Merge: e12560d f0fb55a Author: Nick Mathewson Date: Wed Oct 19 17:04:44 2016 -0400 Merge remote-tracking branch 'arma/bug6769' changes/bug20269| 4 changes/bug6769 | 5 + src/or/entrynodes.c | 21

[tor-commits] [tor/master] Abolish globals in entrynodes.c; relativize guard context to new guard_selection_t structure

2016-10-19 Thread nickm
commit 006c26f54fc2a3c47350e9367ebb3eb340c866a1 Author: Andrea Shepard Date: Sun Sep 25 02:11:44 2016 + Abolish globals in entrynodes.c; relativize guard context to new guard_selection_t structure --- src/or/circuitbuild.c | 1 - src/or/entrynodes.c

[tor-commits] [tor/master] Compilation fix. (function pointer implicit cast in tests.)

2016-10-19 Thread nickm
commit 9f6bb29b0534aff108c0a2fe75c9a420b1729fe3 Author: Nick Mathewson Date: Wed Oct 19 17:15:42 2016 -0400 Compilation fix. (function pointer implicit cast in tests.) --- src/test/test_routerlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[tor-commits] [tor/master] Use tor_memeq() instead of tor_memcmp() per code review

2016-10-19 Thread nickm
commit 3b8a40f262b6aeecd52386e89096dc92d7455c1e Author: Andrea Shepard Date: Thu Oct 13 23:48:49 2016 + Use tor_memeq() instead of tor_memcmp() per code review --- src/or/entrynodes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[tor-commits] [tor/master] Changes file for ticket 19858

2016-10-19 Thread nickm
commit 8b4d961f08e4bc5e810877bea1f60268cf9a572c Author: Andrea Shepard Date: Sun Sep 25 02:13:02 2016 + Changes file for ticket 19858 --- changes/ticket19858 | 4 1 file changed, 4 insertions(+) diff --git a/changes/ticket19858 b/changes/ticket19858 new

[tor-commits] [tor/master] Adjust comment per code review

2016-10-19 Thread nickm
commit fca605e763e0f869a578da5fc46a4cac8e9a3f72 Author: Andrea Shepard Date: Thu Oct 13 23:47:08 2016 + Adjust comment per code review --- src/or/entrynodes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/or/entrynodes.c

[tor-commits] [tor/master] Merge remote-tracking branch 'andrea/ticket19858_v2'

2016-10-19 Thread nickm
commit 12cf73c4516132a85f76d1c6e60c9492e8751987 Merge: ec4142a 1c6f884 Author: Nick Mathewson Date: Wed Oct 19 17:11:47 2016 -0400 Merge remote-tracking branch 'andrea/ticket19858_v2' Conflict in entrynodes.c: any_bridge_supports_microdescriptors was

[tor-commits] [collector/master] Move index.json* files to index/ subdirectory.

2016-10-19 Thread karsten
commit 03978991666578f70affbb3d6f24a90e6495105a Author: Karsten Loesing Date: Wed Oct 19 19:43:15 2016 +0200 Move index.json* files to index/ subdirectory. Implements #20408. --- src/main/java/org/torproject/collector/index/CreateIndexJson.java | 1 +

[tor-commits] [tor/master] Unify code in channel_write_*cell()

2016-10-19 Thread nickm
commit ec4142abdf7fa4efaa281413e31acc93bf22ea4a Author: Nick Mathewson Date: Wed Oct 19 17:07:23 2016 -0400 Unify code in channel_write_*cell() Patch from pingl; patch for 13827. --- changes/bug13827 | 3 ++ src/or/channel.c | 93

[tor-commits] [tor/master] Bridge-using clients now use their cached microdesc consensus

2016-10-19 Thread nickm
commit bfaded9143d127cb32407a7a58159383fa9ed333 Author: Roger Dingledine Date: Sat Oct 1 16:34:17 2016 -0400 Bridge-using clients now use their cached microdesc consensus Clients that use bridges were ignoring their cached microdesc-flavor consensus files,

[tor-commits] [tor/master] Bridges and relays now use microdescriptors

2016-10-19 Thread nickm
commit 782b6ec288a553f66e47157d377ec4b200b54394 Author: Roger Dingledine Date: Sun Oct 2 01:12:27 2016 -0400 Bridges and relays now use microdescriptors (like clients do) rather than old-style router descriptors. Now bridges will blend in with clients in

[tor-commits] [tor/master] Merge remote-tracking branch 'chelseakomlo/master'

2016-10-19 Thread nickm
commit df387b94e8c4ebac964dcf2227b9a01d6a9481cc Merge: 9f6bb29 471b0c5 Author: Nick Mathewson Date: Wed Oct 19 17:17:12 2016 -0400 Merge remote-tracking branch 'chelseakomlo/master' changes/ticket20077 | 5 + src/or/connection_edge.c | 2 +-

[tor-commits] [tor/master] BUG in purpose_needs_anonymity if switch not matched.

2016-10-19 Thread nickm
commit c87d9b13a4e56237e22df776c47e5520e0d37103 Author: Nick Mathewson Date: Wed Oct 19 17:23:11 2016 -0400 BUG in purpose_needs_anonymity if switch not matched. I believe that this should never trigger, but if it does, it suggests that there was a gap

[tor-commits] [tor/master] Refactor purpose_needs_anonymity to use switch statement

2016-10-19 Thread nickm
commit 471b0c5175521bb2bc49eb7e30d78f656a3a2843 Author: Chelsea H. Komlo Date: Tue Oct 18 19:04:22 2016 -0500 Refactor purpose_needs_anonymity to use switch statement --- changes/ticket20077 | 2 ++ src/or/directory.c | 27 ---

[tor-commits] [tor/master] Refactor to use purpose_needs_anonymity and remove is_sensitive_dir_purpose

2016-10-19 Thread nickm
commit 195ccce94e250a150e208f7a8fb9ba8375b6fe89 Author: Chelsea H. Komlo Date: Sat Oct 8 19:28:38 2016 -0500 Refactor to use purpose_needs_anonymity and remove is_sensitive_dir_purpose --- changes/ticket20077 | 3 +++ src/or/connection_edge.c | 2 +-

[tor-commits] [tor/master] changes file for 20389

2016-10-19 Thread nickm
commit 7010e8593978ff52e4f81e959f39e6215cd72a15 Author: Nick Mathewson Date: Wed Oct 19 18:07:02 2016 -0400 changes file for 20389 --- changes/bug20389 | 4 1 file changed, 4 insertions(+) diff --git a/changes/bug20389 b/changes/bug20389 new file mode 100644

[tor-commits] [tor/master] Say 'Invalid argument' instead of unclear 'Unrecognized'

2016-10-19 Thread nickm
commit e77033e9eee4d40b258e3702e3f4a44fc7f1d436 Author: Ivan Markin Date: Mon Oct 17 20:10:39 2016 + Say 'Invalid argument' instead of unclear 'Unrecognized' --- src/or/control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/control.c

[tor-commits] [tor/master] Bump version on master to 0.3.0.0-alpha-dev.

2016-10-19 Thread nickm
commit e12560db763bdf03c0b2e53ba34a5a9b1f621bdd Author: Nick Mathewson Date: Wed Oct 19 17:03:22 2016 -0400 Bump version on master to 0.3.0.0-alpha-dev. --- configure.ac| 2 +- contrib/win32build/tor-mingw.nsi.in | 2 +- src/win32/orconfig.h

[tor-commits] [torbutton/master] Bug 20399: Remove obsolete font attempt prefs

2016-10-19 Thread gk
commit 2d88aa4d7239c3d386c69396c8d0d40ddd23a952 Author: Arthur Edelstein Date: Tue Oct 18 17:23:45 2016 -0700 Bug 20399: Remove obsolete font attempt prefs --- src/chrome/content/torbutton.js | 9 - 1 file changed, 9 deletions(-) diff --git

[tor-commits] [tor-browser/tor-browser-45.4.0esr-6.5-1] fixup! TB4: Tor Browser's Firefox preference overrides.

2016-10-19 Thread gk
commit 62d6468cedbdd1ae08b1e4a7192184c3aa92137c Author: Arthur Edelstein Date: Tue Oct 18 18:10:41 2016 -0700 fixup! TB4: Tor Browser's Firefox preference overrides. Fixes #20399 by removing obsolete preferences related to our font fingerprinting

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

2016-10-19 Thread translation
commit 5b61ca4d45f5f481693a6e11390612485bab9304 Author: Translation commit bot Date: Wed Oct 19 11:15:51 2016 + Update translations for torbirdy_completed --- ko/torbirdy.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/ko/torbirdy.properties

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

2016-10-19 Thread translation
commit 316cc454ec591d163904bea1b5b041d9821a766b Author: Translation commit bot Date: Wed Oct 19 11:15:45 2016 + Update translations for torbirdy --- ko/torbirdy.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[tor-commits] [obfs4/master] Merge branch 'getlantern-memreduce'

2016-10-19 Thread yawning
commit a9e8a62f9b914d872f0b83528c60f22bada0fcd1 Merge: 6205762 64e5920 Author: Yawning Angel Date: Thu Oct 20 01:36:53 2016 + Merge branch 'getlantern-memreduce' ChangeLog | 2 ++ transports/obfs4/obfs4.go | 5 +++--

[tor-commits] [obfs4/master] Reusing read buffer for readPackets

2016-10-19 Thread yawning
commit df6aeeca8cc8e953284ce1cb8a0910500579dfaf Author: Ox Cart Date: Wed Oct 19 20:18:07 2016 -0500 Reusing read buffer for readPackets --- transports/obfs4/obfs4.go | 5 +++-- transports/obfs4/packet.go | 5 ++--- 2 files changed, 5 insertions(+), 5 deletions(-)

[tor-commits] [metrics-lib/master] Logs the served implementation. Implements task-20334.

2016-10-19 Thread karsten
commit 3acc8fe61d70554a8332557ac26bf639a68bce15 Author: iwakeh Date: Wed Oct 19 12:25:21 2016 +0200 Logs the served implementation. Implements task-20334. --- .../java/org/torproject/descriptor/DescriptorSourceFactory.java| 7 +++ 1 file changed, 7

[tor-commits] [metrics-lib/master] Changed 'descriptor.collector' default value to DescriptorIndexCollector.

2016-10-19 Thread karsten
commit d00b8ac09b0bd1225e882137460a4847c88e6621 Author: iwakeh Date: Wed Oct 19 12:30:06 2016 +0200 Changed 'descriptor.collector' default value to DescriptorIndexCollector. Implements task-20404. --- CHANGELOG.md

[tor-commits] [metrics-lib/master] Added checkstyle unused imports module.

2016-10-19 Thread karsten
commit 24a8d1d5f6f4abe63c69f4c6a1b019eaaff104c1 Author: iwakeh Date: Wed Oct 19 12:11:33 2016 +0200 Added checkstyle unused imports module. --- src/test/resources/metrics_checks.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git

[tor-commits] [metrics-lib/master] Implements task-20039: DescriptorIndexCollector now accepts a URL path.

2016-10-19 Thread karsten
commit 421f38eeb95ba86d8b2f3007f62a111dc090d991 Author: iwakeh Date: Wed Oct 19 12:12:06 2016 +0200 Implements task-20039: DescriptorIndexCollector now accepts a URL path. If only a base URL is given, try to retrieve 'index/index.json' from the given host