NdisGetNblTimestampInfo - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// nbltimestamp.h

void NdisGetNblTimestampInfo(
  [_In_]  NET_BUFFER_LIST const     *Nbl,
  [_Out_] NET_BUFFER_LIST_TIMESTAMP *NblTimestamp
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-nbltimestamp-ndisgetnbltimestampinfo)

NdisGetNblTimestampInfo function

Description

Miniport drivers call NdisGetNblTimestampInfo to retrieve a hardware or software timestamp stored in a NET_BUFFER_LIST (NBL) structure.

Parameters

Nbl [_In_]

A pointer to the NBL where the miniport stored the timestamp.

NblTimestamp [_Out_]

A pointer to a NET_BUFFER_LIST_TIMESTAMP structure. When this function returns, this member contains the timestamp that the miniport stored in the NBL.

Remarks

Miniport drivers can use NdisSetNblTimestampInfo and NdisCopyNblTimestampInfo to set and copy timestamps.

For more information on generating hardware and software timestamps, see Attaching timestamps to packets.

See also

NET_BUFFER_LIST_TIMESTAMP

NdisSetNblTimestampInfo

NdisCopyNblTimestampInfo

Overview of NDIS packet timestamping

Attaching timestamps to packets