Преглед на файлове

changes file for bug1827

Nick Mathewson преди 14 години
родител
ревизия
f71d63ec9d
променени са 1 файла, в които са добавени 9 реда и са изтрити 0 реда
  1. 9 0
      changes/bug1827

+ 9 - 0
changes/bug1827

@@ -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.