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?
The select
polling will not behave differently, only the receive/send functionality will differ between blocking/non-blocking sockets.