RxCeQueryTransportInformation function (rxce.h)

RxCeQueryTransportInformation queries transport information for a given transport.

Syntax

NTSTATUS RxCeQueryTransportInformation(
  PRXCE_TRANSPORT             pTransport,
  PRXCE_TRANSPORT_INFORMATION pTransportInformation
);

Parameters

pTransport

A pointer to the transport.

pTransportInformation

A pointer to the caller-supplied buffer for returning information.

Return value

RxCeQueryTransportInformation returns STATUS_SUCCESS on success or the following error code on failure:

Return code Description
STATUS_INVALID_PARAMETER
This value can be returned for any of the following conditions:
The pTransport parameter passed to this routine was invalid.
The pTransportInformation parameter did not point to allocated memory large enough to hold an RXCE_TRANSPORT_INFORMATION data structure.

Remarks

RxCeQueryTransportInformation returns information for a given transport. The RXCE_TRANSPORT_INFORMATION data structure contains two data elements that are filled in by RxCeQueryTransportInformation:

ConnectionCount

QualityOfService

Requirements

Requirement Value
Target Platform Desktop
Header rxce.h (include Rxce.h, Rxcehdlr.h, Tdi.h)
IRQL <= APC_LEVEL

See also

RxCeQueryAdapterStatus

RxCeQueryInformation