Changeset fd73022


Ignore:
Timestamp:
2011-02-24T19:15:44Z (13 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
79ec314
Parents:
bb8d7d1
Message:

Don't use AI_ADDRCONFIG at all for setting up a listening socket, since it
only seems to cause problems when other programs don't use it. I hope this
won't introduce new other problems..

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bitlbee.c

    rbb8d7d1 rfd73022  
    8787        hints.ai_flags = AI_PASSIVE
    8888#ifdef AI_ADDRCONFIG
    89                        | AI_ADDRCONFIG
     89        /* Disabled as it may be doing more harm than good: this flag
     90           ignores IPv6 addresses on lo (which seems reasonable), but
     91           the result is that some clients (including irssi) try to
     92           connect to ::1 and fail.
     93                       | AI_ADDRCONFIG */
    9094#endif
    9195        ;
Note: See TracChangeset for help on using the changeset viewer.