RTNAL_QUEUE_INFO

RTNAL_QUEUE_INFO is a structure that specifies data on the network device queue as part of structure RTNAL_QUEUE.

Syntax

typedef struct _RTNAL_QUEUE_INFO{
    ULONG deviceQueueNumber;
    RTNAL_QUEUE_TYPE queueType;
    INT queuePriorityClass;
    INT queuePriority;
    ULONG txCompleteIdealProcessor;
    ULONG txCompletePriority;
    PVOID reserved[4];
}RTNAL_QUEUE_INFO, *PRTNAL_QUEUE_INFO;

Fields

deviceQueueNumber

Device driver queue index. Separate indexes are used for receive and transmit queues by the NAL and its drivers. The indexes start with 0.

queueType

The queue type (receive or transmit).

queuePriorityClass;

Reserved for future use.

queuePriority

Reserved for future use.

txCompleteIdealProcessor

The ideal processor of the transmit complete thread.

txCompletePriority

The priority of the transmit complete thread.

Requirements

Minimum Supported Version RTX64 4.0
Header rtnapi.h, RtNalApi.h
Library RtNal.lib

See Also:

RTNAL_QUEUE