hello2002
驱动牛犊
驱动牛犊
  • 注册日期2002-06-02
  • 最后登录2004-08-17
  • 粉丝0
  • 关注0
  • 积分0分
  • 威望0点
  • 贡献值0点
  • 好评度0点
  • 原创分0分
  • 专家分0分
阅读:1121回复:0

在NDIS 5.1中Packet reuse 该怎样理解?

楼主#
更多 发布于:2002-06-26 11:00
在WINDOWS XP 中 PtReceivePacket()
调用里:
#ifdef NDIS51
//
// Check if we can reuse the same packet for indicating up.
// See also: PtReceive().
//

(VOID)NdisIMGetCurrentPacketStack(Packet, &Remaining);
if (Remaining)
{

//
// We can reuse \"Packet\". Indicate it up and be done with it.
//
Status = NDIS_GET_PACKET_STATUS(Packet);
NdisMIndicateReceivePacket(pAdapt->MiniportHandle, &Packet, 1);
return((Status != NDIS_STATUS_RESOURCES) ? 1 : 0);
}
#endif // NDIS51

请教:
Packet reuse 该怎样理解?

[编辑 -  6/26/02 by  hello2002]
asdfasdf asdfa fasdf
游客

返回顶部