Share via


NDIS_GET_PACKET_TIME_RECEIVED (Windows CE 5.0)

Send Feedback

This function returns the TimeReceived value from the out-of-band (OOB) data block associated with a given packet descriptor.

ULONGLONG NDIS_GET_PACKET_TIME_RECEIVED(PNDIS_PACKET_Packet);

Parameters

  • _Packet
    Points to a packet descriptor.

Return Values

NDIS_GET_PACKET_TIME_RECEIVED returns the timestamp, if any, set by the miniport when the net packet was received on the underlying network interface card (NIC).

Remarks

When a protocol driver's ProtocolReceivePacket function is called with an indication, it can use this macro to retrieve the TimeReceived timestamp using the _Packet pointer it is given on entry.

A protocol driver can call NdisGetReceivedPacket and the NDIS_GET_ORIGINAL_PACKET macro to obtain this time stamp from the NDIS_PACKET_OOB_DATA structure associated with a packet descriptor when its ProtocolReceive function is given an indication. However, these calls are superfluous if the protocol is bound to an underlying driver that does not supply OOB information with its indications.

A highest-level protocol driver might use this macro before it forwards a received net packet to clients if its clients expect time stamps. Still higher-level drivers or system components can convert this time stamp into locale-specific values more meaningful to the end user.

The NDIS_GET_PACKET_TIME_RECEIVED macro is defined as follows.

#define NDIS_GET_PACKET_TIME_RECEIVED(_Packet)                          \
                        ((PNDIS_PACKET_OOB_DATA)((PUCHAR)(_Packet) +    \
                        (_Packet)->Private.NdisPacketOobOffset))->TimeReceived

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Ndis.h.

See Also

NDIS_GET_ORIGINAL_PACKET | NDIS_GET_PACKET_TIME_SENT | NdisGetCurrentSystemTime | NdisGetReceivedPacket | NdisMIndicateReceivePacket | NDIS_OOB_DATA_FROM_PACKET | NDIS_PACKET_OOB_DATA | NDIS_SET_PACKET_TIME_RECEIVED | ProtocolReceive | ProtocolReceivePacket

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.