rl1987 / tor Public
forked from torproject/tor
Permalink
bugs_25036_250…
Commits on Feb 22, 2018
Commits on Feb 21, 2018
Commits on Feb 20, 2018
-
-
-
-
-
-
-
-
-
-
-
-
Remove a bunch of other redundant #includes
Folks have found two in the past week or so; we may as well fix the others. Found with: \#!/usr/bin/python3 import re def findMulti(fname): includes = set() with open(fname) as f: for line in f: m = re.match(r'^\s*#\s*include\s+["<](\S+)[>"]', line) if m: inc = m.group(1) if inc in includes: print("{}: {}".format(fname, inc)) includes.add(m.group(1)) import sys for fname in sys.argv[1:]: findMulti(fname) -
Commits on Feb 18, 2018
-
Use autoconf to check for optional zstd functionality.
Fixes a bug in our zstd-static code. Bug not in any released version of Tor.
Commits on Feb 16, 2018
-
-
Merge branch 'maint-0.3.2' into maint-0.3.3
"ours" merge to avoid taking 24902 a second time and having to reconcile all the merge conflicts.
-
-
-
-
Allow checkpointing of non-sha1 digests.
This is necessary because apparently v3 rendezvous cpath hops use sha3, which I had forgotten. Bugfix on master; bug not in any released Tor.
-
-
-
Remove changes file for 24898-029 backports in maint-0.3.2
These patches were already merged, and so don't need a changes file in these branches.
-
-
-
-
Merge branch 'maint-0.2.9' into maint-0.3.1
"ours" merge to avoid conflicts with the cherry-picked fix for 24898.
-
stop calling channel_mark_client in response to a create_fast
since all it does is produce false positives this commit should get merged into 0.2.9 and 0.3.0 *and* 0.3.1, even though the code in the previous commit is already present in 0.3.1. sorry for the mess. [Cherry-picked]
-
stop calling channel_mark_client in response to a create_fast
since all it does is produce false positives this commit should get merged into 0.2.9 and 0.3.0 *and* 0.3.1, even though the code in the previous commit is already present in 0.3.1. sorry for the mess.
-