// namcache.h
RX_NC_CHECK_STATUS RxNameCacheCheckEntry(
[in] IN PNAME_CACHE NameCache,
[in] IN ULONG MRxContext
);
View the official Windows Driver Kit DDI referenceNo description available.
RxNameCacheCheckEntry checks a name cache entry for validity. A valid entry means that the lifetime has not expired and the MRxContext parameter passes the equality check.
NameCache [in]A pointer to the NAME_CACHE structure to check.
MRxContext [in]A value of context supplied by the network mini-redirector for equality checking when making a valid entry check.
RxNameCacheCheckEntry returns one of the possible enumeration values defined for RX_NC_CHECK_STATUS:
| Return code | Description |
|---|---|
| RX_NC_SUCCESS | The check was successful and the entry is valid. |
| RX_NC_TIME_EXPIRED | The check failed because the lifetime has expired. |
| RX_NC_MRXCTX_FAIL | The check failed because MRxContext failed equality checking. |
RxNameCacheExpireEntryWithShortName