UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
ESocketReceiveFlags Namespace Reference

Enumerations

enum  Type { None = 0 , Peek = 2 , WaitAll = 0x100 }
 

Enumeration Type Documentation

◆ Type

Enumerates socket receive flags.

Enumerator
None 

Return as much data as is currently available in the input queue, up to the specified size of the receive buffer.

Peek 

Copy received data into the buffer without removing it from the input queue.

WaitAll 

Block the receive call until either the supplied buffer is full, the connection has been closed, the request has been canceled, or an error occurred.