Setting a socket nonblocking after a blocking connect

Viewed 711

Is it safe to do connect() in blocking and after that, make the socket nonblock and do all nonblocking stuff for example epoll()/select()?

Does it cause to lack of some nonblocking operation that might I'm not considering?

1 Answers
Related