Impact of using select with blocking and non-blocking sockets

DaTaBomB picture DaTaBomB · Feb 24, 2013 · Viewed 7.2k times · Source

How will my program differ in behavior if I use non-blocking sockets with a select() call as opposed to using blocking sockets with a select() call?

Answer

Some programmer dude picture Some programmer dude · Feb 24, 2013

The select polling will not behave differently, only the receive/send functionality will differ between blocking/non-blocking sockets.