mirror of https://github.com/aria2/aria2
2009-12-27 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Get rid of AI_ADDRCONFIG when --disable-ipv6 opiton is given. It causes name resolution error when none of network interface has IPv4 address. * src/main.ccpull/1/head
parent
3465e87167
commit
c92975aefb
|
@ -1,3 +1,10 @@
|
||||||
|
2009-12-27 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||||
|
|
||||||
|
Get rid of AI_ADDRCONFIG when --disable-ipv6 opiton is given. It
|
||||||
|
causes name resolution error when none of network interface has
|
||||||
|
IPv4 address.
|
||||||
|
* src/main.cc
|
||||||
|
|
||||||
2009-12-27 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
2009-12-27 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||||
|
|
||||||
Bump up version number to 1.8.0.
|
Bump up version number to 1.8.0.
|
||||||
|
|
|
@ -210,6 +210,9 @@ downloadresultcode::RESULT main(int argc, char* argv[])
|
||||||
|
|
||||||
if(op->getAsBool(PREF_DISABLE_IPV6)) {
|
if(op->getAsBool(PREF_DISABLE_IPV6)) {
|
||||||
SocketCore::setProtocolFamily(AF_INET);
|
SocketCore::setProtocolFamily(AF_INET);
|
||||||
|
// Get rid of AI_ADDRCONFIG. It causes name resolution error
|
||||||
|
// when none of network interface has IPv4 address.
|
||||||
|
setDefaultAIFlags(0);
|
||||||
}
|
}
|
||||||
// Bind interface
|
// Bind interface
|
||||||
if(!op->get(PREF_INTERFACE).empty()) {
|
if(!op->get(PREF_INTERFACE).empty()) {
|
||||||
|
|
Loading…
Reference in New Issue