I am developing a 802.11 NDIS 6 miniport driver. My hardware has four tx queue for different type of packet - BE, BK, VI, VO. So to implement that from the SendNetBufferList function I have determined the packet type using the code below and put them into the proper queue.

NDIS_NET_BUFFER_LIST_8021Q_INFO *pNdis8021qInfo;

pNdis8021qInfo = ((NDIS_NET_BUFFER_LIST_8021Q_INFO *) &NET_BUFFER_LIST_INFO(pNBL, Ieee8021QNetBufferListInfo));

But I found that pNdis8021qInfo->TagHeader.UserPriority is always 0. I never observed any packets with any other priority values. I have tested with skype also. Can anyone please suggest how generate packets with different priorities? Also if there is any tools please let me know where can I download from.

Moreover, do I need to do any thing else in my driver to inform windows that the interface is QoS capable. I found in MSDN that we should set the NDIS_MAC_OPTION_8021P_PRIORITY when windows queried OID_GEN_MAC_OPTIONS. This part is also implemented in my driver but this OID is not been fired by windows in my case.

Thanking you in advance,

Regards, Souvik

link|improve this question

22% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.