Is there a difference between the single function call
send(fd, "ab", 2, MSG_OOB);
and the two function calls
send(fd, "a", 1, MSG_OOB); send(fd, "b", 1, MSG_OOB);
Redo Figure 24.6 to use poll instead of select.