]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
changes file for bug1827
authorNick Mathewson <nickm@torproject.org>
Wed, 28 Dec 2011 21:40:15 +0000 (16:40 -0500)
committerNick Mathewson <nickm@torproject.org>
Wed, 28 Dec 2011 21:40:15 +0000 (16:40 -0500)
changes/bug1827 [new file with mode: 0644]

diff --git a/changes/bug1827 b/changes/bug1827
new file mode 100644 (file)
index 0000000..0701876
--- /dev/null
@@ -0,0 +1,9 @@
+  - Minor features:
+    - Try to use system facilities for enumerating local interface
+      addresses, before falling back to our old approach (which was
+      binding a UDP socket, and calling getsockname() on it). That
+      approach was confusing people whose draconian firewall software
+      didn't like binding to UDP sockets, regardless of whether
+      packets were sent. Now we try to use getifaddrs(), SIOCGIFCONF,
+      or GetAdaptersAddresses(), depending on what the system
+      supports. Resolves ticket #1827.