What does NTSTATUS 0xC0231012 (STATUS_NDIS_OFFLOAD_CONNECTION_REJECTED) mean?

 
Previous Next
STATUS_NDIS_OFFLOAD_POLICY STATUS_NDIS_OFFLOAD_PATH_REJECTED

STATUS_NDIS_OFFLOAD_CONNECTION_REJECTED

The offload target rejected the specific TCP connection

STATUS_NDIS_OFFLOAD_CONNECTION_REJECTED means the request reached the TCP Chimney offload target but that target did not accept the connection. This differs from a local policy block: the offload machinery evaluated connection state and decided the adapter or target could not own it.

Use connection-specific evidence. The TCP state, options, security processing, checksum/offload capabilities, and target resource limits can all matter. Because TCP Chimney is deprecated, also check whether the driver stack is old compatibility code that should not be used for new designs.

Evidence that narrows it

  • Capture the offload block list, TCP cached/delegated state, and adapter offload target response.
  • Check whether the connection uses options or features the target does not support.
  • Separate this from STATUS_NDIS_OFFLOAD_POLICY, where policy blocks offload before target acceptance.

References


Looking for a different code? Search another status or error code.