Hi all,
I am writing WWAN MB Ndis 6.20 driver.I have one doubt. Is it mandatory to call NdisMIndicateStatusEx for each OID coming in NdisOidRequest for NDIS 6.20. Or we are suppose to call it only in case of asynchronous OID handling.
Amit
Hi all,
I am writing WWAN MB Ndis 6.20 driver.I have one doubt. Is it mandatory to call NdisMIndicateStatusEx for each OID coming in NdisOidRequest for NDIS 6.20. Or we are suppose to call it only in case of asynchronous OID handling.
Amit
Hi,
I do it for every OID I handle.
S.
Hi ,
You meant all OID required for WWAN. i.e.
OID_GEN_MEDIA_SUPPORTED
OID_GEN_PHYSICAL_MEDIUM
OID_GEN_SUPPORTED_LIST
OID_WWAN_DRIVER_CAPS
OID_WWAN_DEVICE_CAPS
OID_WWAN_READY_INFO
OID_WWAN_HOME_PROVIDER
OID_WWAN_REGISTER_STATE
OID_WWAN_PACKET_SERVICE
OID_WWAN_CONNECT
Actually problem with my WWAN is that i am not receiving all those oids mentioned in MB Miniport Driver Initialization. such as OID_GEN_PHYSICAL_MEDIUM,OID_GEN_MEDIA_SUPPORTED,OID_WWAN_DRIVER_CAPS,OID_WWAN_DEVICE_CAPS.
i am only receiving OID_GEN_SUPPORTED_LIST and OID_GEN_MEDIA_SUPPORTED. Even in OID_GEN_MEDIA_SUPPORTED informationBufferLength is Zero.
Amit