ERROR_RECEIVE_EXPEDITED - 708 (0x2C4)
{Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system.
Updated: Feb 21, 2026
Technical Meaning
The ERROR_RECEIVE_EXPEDITED error code indicates that the network transport has returned data to its client, which was marked as expedited by the remote system. Expedited data typically refers to a mechanism where certain packets are prioritized or delivered before others, ensuring timely delivery of critical information.
Error Details
This error is specific to scenarios where the network protocol or transport layer marks some data as expedited and delivers it to the client application. The application must handle this data appropriately, often with higher priority than regular data packets.
Usage Context
The ERROR_RECEIVE_EXPEDITED code can be encountered in various networking applications that use protocols such as TCP/IP or other custom network transports where expedited data is a feature. It is typically used to inform the application that certain data has been received and should be processed immediately.
Developer Interpretation
Developers should interpret this error as an indication that expedited data has been received by their application. This can occur in scenarios such as real-time communication, where timely delivery of critical information is essential. The developer must ensure that the application logic correctly handles these expedited packets to maintain proper functionality.
Related Errors
ERROR_NO_DATA(10063): Indicates no data was received from a socket.ERROR_CONNECTION_ABORTED(10053): Occurs when a connection is forcibly closed by the remote host before all data has been sent or received.
FAQ
Q: What does the ERROR_RECEIVE_EXPEDITED error code signify?
A: It signifies that expedited data was received from the network transport, indicating that certain packets were prioritized and delivered to the client application.
Q: How should an application handle this error?
A: The application should ensure that it processes the expedited data promptly, as these packets are typically critical and require immediate attention.
Summary
The ERROR_RECEIVE_EXPEDITED error code is a specific indication that expedited data has been received by the client from the network transport. Developers must handle this data appropriately to maintain application functionality in scenarios where timely delivery of information is crucial.