首页
社区
课程
招聘
[旧帖] sendarp出错,提供给请求操作的用户缓冲区无效! 0.00雪花
发表于: 2010-9-9 17:48 6236

[旧帖] sendarp出错,提供给请求操作的用户缓冲区无效! 0.00雪花

2010-9-9 17:48
6236
void CNetlianxiDlg::OnButton7() 
{
	// TODO: Add your control notification handler code here
	u_char cc[6];
	ULONG pDstLen=6;
	CString csc;
	char ipcharbuf[128]={0};
	CListBox * pList=((CListBox *)GetDlgItem(IDC_LIST1));

	for (int i=1;i<255;i++)
	{

		csc="";
		memset(ipcharbuf,0,128);
		wsprintf(ipcharbuf,"192.168.28.%d",i);
		if (SendARP(inet_addr(ipcharbuf),0,(ULONG*)&cc,&pDstLen)==NO_ERROR)
		{

			u_char *p = cc;
			csc.Format("%02X-%02X-%02X-%02X-%02X-%02X",p[0],p[1],p[2],p[3],p[4],p[5]);

			pList->AddString(csc);
		}

	}

}


上面是什么原因?

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 58
活跃值: (40)
能力值: ( LV3,RANK:30 )
在线值:
发帖
回帖
粉丝
2
详细点,不知道什么意思
2010-9-9 22:24
0
游客
登录 | 注册 方可回帖
返回
//