icmp port unreachable error message

前端 未结 2 1696
遥遥无期
遥遥无期 2021-02-20 08:51

I am sending UDP packets from one PC to another. I am watching the the whole activity using Wire Shark. I notice that for some time there is smooth transmission of packets from

2条回答
  •  梦谈多话
    2021-02-20 09:04

    The reason this occurs is that there is no process on the receiver that waiting on that port.

    You need to have a client, that has a socket open, and has done the bind() to that port.

提交回复
热议问题