// midatlax.h
PVOID RxMapMidToContext(
PRX_MID_ATLAS MidAtlas,
USHORT Mid
);
View the official Windows Driver Kit DDI referenceNo description available.
RxMapMidToContext maps a Multiplex ID (MID) to its associated context in a MID_ATLAS structure.
MidAtlasA pointer to the MID_ATLAS structure.
MidThe multiplex ID to be mapped.
RxMapMidToContext returns a pointer to the associated context, or NULL if none exists.
RDBSS defines a Multiplex ID (MID), a 16-bit value, that can be used by both the network client (mini-redirector) and the server to distinguish between the concurrently active requests on any connection. A MID is a component of a MID_ATLAS data structure allocated by calling RxCreateMidAtlas. A MID_MAP data structure is allocated and used for mapping MIDs to RX_CONTEXT data structures.
RxMapAndDissociateMidFromContext