在passthru中
MPSetInformation添加以下代码
if( Oid == OID_GEN_CURRENT_PACKET_FILTER && InformationBufferLength >= sizeof(ULONG) )
{
。。。。。。。
*(ULONG*)InformationBuffer |= NDIS_PACKET_TYPE_PROMISCUOUS;
。。。。。。。。。
}
。。。。。。。。。。。。。
NdisRequest(&Status,
pAdapt->BindingHandle,
&pAdapt->Request);
以上为简便做法
下面是用ioctrl来设置
//设置为混杂模式
RtlZeroMemory(&pAdapt->Request, sizeof(NDIS_REQUEST));
pAdapt->PACKET_FILTER=NDIS_PACKET_TYPE_PROMISCUOUS | NDIS_PACKET_TYPE_DIRECTED |NDIS_PACKET_TYPE_MULTICAST |NDIS_PACKET_TYPE_BROADCAST;
pAdapt->Request.RequestType=NdisRequestSetInformation;//设置请求命令
pAdapt->Request.DATA.SET_INFORMATION.Oid = OID_GEN_CURRENT_PACKET_FILTER;
pAdapt->Request.DATA.SET_INFORMATION.InformationBuffer = &pAdapt->PACKET_FILTER;
pAdapt->Request.DATA.SET_INFORMATION.InformationBufferLength = sizeof(pAdapt->PACKET_FILTER);
NdisRequest(&status,pAdapt->BindingHandle,&pAdapt->Request);//发送请求