Error Set ShutdownError [src]

Errors

BlockingOperationInProgress
ConnectionAborted
ConnectionResetByPeer

Connection was reset by peer, application should close socket as it is no longer usable.

NetworkSubsystemFailed

The network subsystem has failed.

SocketNotConnected

The socket is not connected (connection-oriented sockets only).

SystemResources
Unexpected UnexpectedError

The Operating System returned an undocumented error code.

This error is in theory not possible, but it would be better to handle this error than to invoke undefined behavior.

When this error code is observed, it usually means the Zig Standard Library needs a small patch to add the error code to the error set for the respective function.

Source

pub const ShutdownError = error{ ConnectionAborted, /// Connection was reset by peer, application should close socket as it is no longer usable. ConnectionResetByPeer, BlockingOperationInProgress, /// The network subsystem has failed. NetworkSubsystemFailed, /// The socket is not connected (connection-oriented sockets only). SocketNotConnected, SystemResources, } || UnexpectedError