Commit 85f605f2 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

src: Check availability of ENONET

parent 5cf07f5c
......@@ -374,7 +374,9 @@ void perform_accept_pending_connection(ListenHandler *listener_handler,
errno == EPROTO ||
errno == ENOPROTOOPT ||
errno == EHOSTDOWN ||
#ifdef ENONET
errno == ENONET ||
#endif // ENONET
errno == EHOSTUNREACH ||
errno == EOPNOTSUPP ||
errno == ENETUNREACH) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment