Navigation
API > API/Runtime > API/Runtime/Sockets
Enumerates socket shutdown modes.
| Name | ESocketShutdownMode |
| Type | enum |
| Header File | /Engine/Source/Runtime/Sockets/Public/SocketTypes.h |
| Include Path | #include "SocketTypes.h" |
Syntax
enum ESocketShutdownMode
{
Read,
Write,
ReadWrite,
}
Values
| Name | Remarks |
|---|---|
| Read | Disables reading on the socket. |
| Write | Disables writing on the socket. |
| ReadWrite | Disables reading and writing on the socket. |