문제

I m able to retrieved active TCP and UDP connection using iphlpapi. The TCP Connection showing with source info(ip/port), Destination info(ip/port), state and process id. But for UDP Connection its no giving remote IP and port. That what i want to get. Any way to get destination information using source information or process id in Delphi or c++.

도움이 되었습니까?

해결책

UDP is a connectionless protocol. You can only get the local port that has been opened.

UPDATE: This applies for a static look at the port usage. However, if you have active UDP trafic you can still retrieve the remote endpoint.

User Ishmeet suggested uIP or LwIP in the comments.

UDP - Wikipedia

Connectionless Protocol - Wikipedia

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top