EasySocket::accept() waits 0.5ms till a select() timeout happens. This creates 2.7% overhead on my system. Assumption of the patch is that microseconds are needed for the struct timeval but milliseconds were meant. With this change no visible overhead is measurable on my system.
EasySocket::accept()
waits 0.5ms till aselect()
timeout happens. This creates 2.7% overhead on my system. Assumption of the patch is that microseconds are needed for thestruct timeval
but milliseconds were meant. With this change no visible overhead is measurable on my system.