This function copies a specified range of data from one packet to another.
Header file: | Ndis.h |
Windows CE versions: | 2.0 and later |
VOID NdisCopyFromPacketToPacket( IN PNDIS_PACKET Destination,
IN UINT DestinationOffset, IN UINT BytesToCopy,
IN PNDIS_PACKET Source, IN UINT SourceOffset,
OUT PUINT BytesCopied );
The caller of this function allocates the destination packet, if not the source packet as well. The packet descriptor of the destination packet should have enough chained buffer descriptors to receive the data.
If the source packet runs out of data or the destination packet out of space before the specified number of bytes has been copied, the copy operation stops. In either case, this function returns the number of bytes successfully copied from the source to the destination packet.
This function does not copy any out-of-band information associated with the specified Source to the Destination. To copy this information, the driver can use pointers returned by NDIS_OOB_DATA_FROM_PACKET and then call the NdisMoveMemory function.
The driver must release any spin lock it is holding before calling this function.
A driver that calls this function runs at IRQL <= DISPATCH_LEVEL.
NdisAllocateBuffer, NdisAllocatePacket, NdisMoveMemory