aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
Diffstat (limited to 'changes')
-rw-r--r--changes/bug10849_0236
-rw-r--r--changes/bug10849_0256
-rw-r--r--changes/bug116185
-rw-r--r--changes/bug116233
-rw-r--r--changes/bug116284
-rw-r--r--changes/bug434510
6 files changed, 34 insertions, 0 deletions
diff --git a/changes/bug10849_023 b/changes/bug10849_023
new file mode 100644
index 000000000..480dea3de
--- /dev/null
+++ b/changes/bug10849_023
@@ -0,0 +1,6 @@
+ o Major bugfixes:
+ - When running a hidden service, do not allow TunneledDirConns 0;
+ this will keep the hidden service from running, and also
+ make it publish its descriptors directly over HTTP. Fixes bug 10849;
+ bugfix on 0.2.1.1-alpha.
+
diff --git a/changes/bug10849_025 b/changes/bug10849_025
new file mode 100644
index 000000000..1a3b71bab
--- /dev/null
+++ b/changes/bug10849_025
@@ -0,0 +1,6 @@
+ o Removed code:
+ - The TunnelDirConns and PreferTunnelledDirConns options no longer
+ exist; tunneled directory connections have been available since
+ 0.1.2.5-alpha, and turning them off is not a good idea. This is a
+ brute-force fix for 10849, where "TunnelDirConns 0" would break
+ hidden services.
diff --git a/changes/bug11618 b/changes/bug11618
new file mode 100644
index 000000000..e650d55cd
--- /dev/null
+++ b/changes/bug11618
@@ -0,0 +1,5 @@
+ o Minor bugfixes:
+ - Fix all valgrind warnings produced by the unit tests. There were
+ over a thousand memory leak warnings previously, mostly produced
+ by forgetting to free things in the unit test code. Fixes bug
+ 11618, bugfixes on many versions of Tor.
diff --git a/changes/bug11623 b/changes/bug11623
new file mode 100644
index 000000000..58ff06d38
--- /dev/null
+++ b/changes/bug11623
@@ -0,0 +1,3 @@
+ o Minor bugfixes:
+ - Make Tor compile correctly with --disable-buf-freelists.
+ Fixes bug 11623; bugfix on 0.2.5.3-alpha.
diff --git a/changes/bug11628 b/changes/bug11628
new file mode 100644
index 000000000..b93e1f4fc
--- /dev/null
+++ b/changes/bug11628
@@ -0,0 +1,4 @@
+ o Minor features:
+ - The configure script has a --disable-seccomp option to turn off
+ support for libseccomp on systems that have it, in case it (or
+ Tor's use of it) is broken. Resolves ticket 11628.
diff --git a/changes/bug4345 b/changes/bug4345
new file mode 100644
index 000000000..5e650fc34
--- /dev/null
+++ b/changes/bug4345
@@ -0,0 +1,10 @@
+ o Minor bugfixes:
+ - Check return code on spawn_func() in cpuworker code, so that we don't
+ think we've spawned a nonworking cpuworker and write junk to it
+ forever. Fix related to bug 4345; bugfix on all released Tor versions.
+ Found by "skruffy".
+
+ - Use a pthread_attr to make sure that spawn_func() cannot return
+ an error while at the same time launching a thread. Fix related
+ to bug 4345; bugfix on all released Tor versions. Reported by
+ "cypherpunks".