Relates :
|
In java/net/PlainSocketImpl.c line 347 there is a non-blocking connect() call. errno is only being checked for EINPROGRESS. This should be improved to also handle other error conditions. At least EALREADY. See the comments section for details. The connect is actually blocking.
|