bug1827 527 B

123456789
  1. - Minor features:
  2. - Try to use system facilities for enumerating local interface
  3. addresses, before falling back to our old approach (which was
  4. binding a UDP socket, and calling getsockname() on it). That
  5. approach was confusing people whose draconian firewall software
  6. didn't like binding to UDP sockets, regardless of whether
  7. packets were sent. Now we try to use getifaddrs(), SIOCGIFCONF,
  8. or GetAdaptersAddresses(), depending on what the system
  9. supports. Resolves ticket #1827.