2

On Unix, send() on a non-blocking socket could return error EWOULDBLOCK if outbound socket buffer is full. In this case, one should call select() to determine when it's possible to retry. Does Boost sockets in nonblocking mode handle all of this for you?

theactiveactor
  • 7,314
  • 15
  • 52
  • 60

1 Answers1

0

Yes, it does. You can check for yourself for example here boost/asio/detail/impl/socket_ops.ipp.

Tom Trebicky
  • 638
  • 1
  • 5
  • 11