NdisCopyNblTimestampInfo - NtDoc

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

void NdisCopyNblTimestampInfo(
  [_Inout_] NET_BUFFER_LIST       *NblDest,
  [_In_]    NET_BUFFER_LIST const *NblSrc
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

NdisCopyNblTimestampInfo function

Description

Miniport drivers call the NdisCopyNblTimestampInfo function to copy a software or hardware timestamp from a source NET_BUFFER_LIST structure to a destination NET_BUFFER_LIST structure.

Parameters

NblDest [_Inout_]

A pointer to a destination NET_BUFFER_LIST structure.

NblSrc [_In_]

A pointer to the source NET_BUFFER_LIST structure where the miniport driver stored the timestamp.

Remarks

Miniport drivers can use NdisSetNblTimestampInfo and NdisGetNblTimestampInfo to set and retrieve timestamps.

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

See also

NET_BUFFER_LIST

NET_BUFFER_LIST_TIMESTAMP

NdisSetNblTimestampInfo

NdisGetNblTimestampInfo

Overview of NDIS packet timestamping

Attaching timestamps to packets