本文介绍了使用ICMP协议进行套接字编程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在网络上的两台不同PC上运行的无连接套接字服务器应用程序/套接字客户端应用程序.到目前为止,revvFrom函数无法响应sendto函数,而在EchoRequest结构中未传递IPHeader.使用的语言:Microsoft Windows中的C ++.

Connnctionless Socket Server App/Socket client App running on two different PCs on network.As of now recvFrom function does not respond to sendto function, with out passing IPHeader in the EchoRequest structure..language used:C++ in MicrosoftWindows.

typedef struct tagECHOREQUEST
{
	IPHDR    ipHdr;
	ICMPHDR  icmpHdr;
	DWORD	 dwTime;
	char	 cData[REQ_DATASIZE];
}ECHOREQUEST, *PECHOREQUEST;


如何使Socket Client在不传递IPHDR的情况下与套接字服务器进行通信..请提供任何帮助..

问候..
Lakkan


How can I make Socket Client to communicate with socket server with out passing IPHDR.. Any help please..

Regards..
Lakkan

推荐答案


这篇关于使用ICMP协议进行套接字编程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 13:32