aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-01-18 15:33:04 -0500
committerNick Mathewson <nickm@torproject.org>2012-01-18 15:33:04 -0500
commitd1b40cf2e7bb55d3c421e6eff476330e08ab4750 (patch)
tree557d4747579301e39f77e4889e84739793690ca3 /changes
parent1772782e425734967981b79be1122017ef606dd0 (diff)
parentdea0720dadea8f3915901833115726f4ba0d48f4 (diff)
downloadtor-d1b40cf2e7bb55d3c421e6eff476330e08ab4750.tar.gz
tor-d1b40cf2e7bb55d3c421e6eff476330e08ab4750.zip
Merge remote-tracking branch 'public/bug4533_part1'
Conflicts: src/common/compat.h
Diffstat (limited to 'changes')
-rw-r--r--changes/tor_socket_tests11
1 files changed, 11 insertions, 0 deletions
diff --git a/changes/tor_socket_tests b/changes/tor_socket_tests
new file mode 100644
index 0000000000..b7ee3251bb
--- /dev/null
+++ b/changes/tor_socket_tests
@@ -0,0 +1,11 @@
+ o Minor bugfixes:
+ - Find more places in the code that should have been testing for
+ invalid sockets using the SOCKET_OK macro. Required for a fix
+ for bug 4533. Bugfix on 0.2.2.28-beta.
+ - Detect attempts to build Tor on (as yet hypothetical) versions
+ of Windows where sizeof(intptr_t) != sizeof(SOCKET). Partial
+ fix for bug 4533. Bugfix on 0.2.2.28-beta.
+
+ o Code simplification and refactoring:
+ - Use a TOR_INVALID_SOCKET macro when initializing a socket to an
+ invalid value, rather than just -1.