哪些API函数可以实现与TIdUDPServer发送、接收数据的功能!!(50分)

  • 主题发起人 主题发起人 Neo_leaf
  • 开始时间 开始时间
N

Neo_leaf

Unregistered / Unconfirmed
GUEST, unregistred user!
想通过使用API函数来实现对设备/机器进行发送数据,并接收设备返回的数据(注:当对设备发送命令时,设备会自动作出应答,返回命令),<br>就象TIdUDPServer所实现的功能一样,<br>发送:<br> &nbsp; &nbsp; TIdUDPServer.SendBuffer(DesIP,DesPort,Buf,bufSize);<br>接收:<br> &nbsp; &nbsp; TIdUDPServer.OnUDPRead(Adata:TSTream....)<br> &nbsp; &nbsp; begin<br> &nbsp; &nbsp; &nbsp; 直接读取Adata中的数据。。。。。。<br> &nbsp; &nbsp; &nbsp; 并进行操作。。。。<br> &nbsp; &nbsp; end;<br>希望大家把知道的告诉我,<br>都有分,<br>多谢大家。。。。
 
改用WINSOCK API直接开发
 
WINSOCK API,<br>对,我就是想知道用哪些WINSOCK API,<br>知道的富翁请写下来,并请配点例子语句,<br>如发送数据为:40 40 40 40 01 fb 05 00 00 00 00 21 00 01 00 00 23<br>马上给分,
 
socket,bing,listen, sendto
 
uses winSock<br>function sendto; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;external &nbsp; &nbsp;winsocket name 'sendto';<br>function recvFrom; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;external &nbsp; &nbsp;winsocket name 'recvFrom';
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
900
SUNSTONE的Delphi笔记
S
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
后退
顶部