enum | boost::system::errc::errc_t {
boost::system::errc::success = 0,
boost::system::errc::address_family_not_supported = EAFNOSUPPORT,
boost::system::errc::address_in_use = EADDRINUSE,
boost::system::errc::address_not_available = EADDRNOTAVAIL,
boost::system::errc::already_connected = EISCONN,
boost::system::errc::argument_list_too_long = E2BIG,
boost::system::errc::argument_out_of_domain = EDOM,
boost::system::errc::bad_address = EFAULT,
boost::system::errc::bad_file_descriptor = EBADF,
boost::system::errc::bad_message = EBADMSG,
boost::system::errc::broken_pipe = EPIPE,
boost::system::errc::connection_aborted = ECONNABORTED,
boost::system::errc::connection_already_in_progress = EALREADY,
boost::system::errc::connection_refused = ECONNREFUSED,
boost::system::errc::connection_reset = ECONNRESET,
boost::system::errc::cross_device_link = EXDEV,
boost::system::errc::destination_address_required = EDESTADDRREQ,
boost::system::errc::device_or_resource_busy = EBUSY,
boost::system::errc::directory_not_empty = ENOTEMPTY,
boost::system::errc::executable_format_error = ENOEXEC,
boost::system::errc::file_exists = EEXIST,
boost::system::errc::file_too_large = EFBIG,
boost::system::errc::filename_too_long = ENAMETOOLONG,
boost::system::errc::function_not_supported = ENOSYS,
boost::system::errc::host_unreachable = EHOSTUNREACH,
boost::system::errc::identifier_removed = EIDRM,
boost::system::errc::illegal_byte_sequence = EILSEQ,
boost::system::errc::inappropriate_io_control_operation = ENOTTY,
boost::system::errc::interrupted = EINTR,
boost::system::errc::invalid_argument = EINVAL,
boost::system::errc::invalid_seek = ESPIPE,
boost::system::errc::io_error = EIO,
boost::system::errc::is_a_directory = EISDIR,
boost::system::errc::message_size = EMSGSIZE,
boost::system::errc::network_down = ENETDOWN,
boost::system::errc::network_reset = ENETRESET,
boost::system::errc::network_unreachable = ENETUNREACH,
boost::system::errc::no_buffer_space = ENOBUFS,
boost::system::errc::no_child_process = ECHILD,
boost::system::errc::no_link = ENOLINK,
boost::system::errc::no_lock_available = ENOLCK,
boost::system::errc::no_message_available = ENODATA,
boost::system::errc::no_message = ENOMSG,
boost::system::errc::no_protocol_option = ENOPROTOOPT,
boost::system::errc::no_space_on_device = ENOSPC,
boost::system::errc::no_stream_resources = ENOSR,
boost::system::errc::no_such_device_or_address = ENXIO,
boost::system::errc::no_such_device = ENODEV,
boost::system::errc::no_such_file_or_directory = ENOENT,
boost::system::errc::no_such_process = ESRCH,
boost::system::errc::not_a_directory = ENOTDIR,
boost::system::errc::not_a_socket = ENOTSOCK,
boost::system::errc::not_a_stream = ENOSTR,
boost::system::errc::not_connected = ENOTCONN,
boost::system::errc::not_enough_memory = ENOMEM,
boost::system::errc::not_supported = ENOTSUP,
boost::system::errc::operation_canceled = ECANCELED,
boost::system::errc::operation_in_progress = EINPROGRESS,
boost::system::errc::operation_not_permitted = EPERM,
boost::system::errc::operation_not_supported = EOPNOTSUPP,
boost::system::errc::operation_would_block = EWOULDBLOCK,
boost::system::errc::owner_dead = EOWNERDEAD,
boost::system::errc::permission_denied = EACCES,
boost::system::errc::protocol_error = EPROTO,
boost::system::errc::protocol_not_supported = EPROTONOSUPPORT,
boost::system::errc::read_only_file_system = EROFS,
boost::system::errc::resource_deadlock_would_occur = EDEADLK,
boost::system::errc::resource_unavailable_try_again = EAGAIN,
boost::system::errc::result_out_of_range = ERANGE,
boost::system::errc::state_not_recoverable = ENOTRECOVERABLE,
boost::system::errc::stream_timeout = ETIME,
boost::system::errc::text_file_busy = ETXTBSY,
boost::system::errc::timed_out = ETIMEDOUT,
boost::system::errc::too_many_files_open_in_system = ENFILE,
boost::system::errc::too_many_files_open = EMFILE,
boost::system::errc::too_many_links = EMLINK,
boost::system::errc::too_many_symbolic_link_levels = ELOOP,
boost::system::errc::value_too_large = EOVERFLOW,
boost::system::errc::wrong_protocol_type = EPROTOTYPE
} |