How does a Linux socket buffer overflow?

后端 未结 2 1920
-上瘾入骨i
-上瘾入骨i 2020-12-10 03:48

I have a Java reader application that reads from a multicast socket on a Linux 64-bit platform (2.6.18). The socket size has been set to 2 MB. When the reader cannot read

2条回答
  •  时光说笑
    2020-12-10 04:31

    When the buffer is full, incoming packets are discarded. Packets that are already in the buffer are not modified or replaced.

提交回复
热议问题