Another question about winsock
-
Hello, Is anyone know that if in the network, computer A keep sending message to computer B but computer B does not execute the recv() routine. What will actually happen? If the answer is buffer overflow, then, is it mean the later message will overwrite the earlier message? Nachi
-
Hello, Is anyone know that if in the network, computer A keep sending message to computer B but computer B does not execute the recv() routine. What will actually happen? If the answer is buffer overflow, then, is it mean the later message will overwrite the earlier message? Nachi
Nothing will happen, the computer a will fail to connect - Anders Money talks, but all mine ever says is "Goodbye!"
-
Hello, Is anyone know that if in the network, computer A keep sending message to computer B but computer B does not execute the recv() routine. What will actually happen? If the answer is buffer overflow, then, is it mean the later message will overwrite the earlier message? Nachi
Realistically what ultimately occurs if one systems continues sendng packets to another system is a network overflow. In otherwise, the sending system floods the networking connection of the receiving system. In an non-blocking I/O model, the receiving system will continue getting incoming messages. Kuphryn