1
0
Fork 0
forked from wry/wry

autocommit 2022-01-02 16:30:30 CET

This commit is contained in:
Julian Orth 2022-01-02 16:30:30 +01:00
parent d6172b273f
commit c21f231ce7
34 changed files with 874 additions and 844 deletions

View file

@ -1,6 +1,6 @@
use crate::client::ClientError;
use crate::event_loop::{EventLoopDispatcher, EventLoopError, EventLoopId};
use crate::state::State;
use crate::wl_client::WlClientError;
use std::rc::Rc;
use thiserror::Error;
use uapi::{c, Errno, OwnedFd};
@ -20,7 +20,7 @@ pub enum AcceptorError {
#[error("Could not accept new connections")]
AcceptFailed(#[source] std::io::Error),
#[error("Could not spawn an event handler for a new connection")]
SpawnFailed(#[source] WlClientError),
SpawnFailed(#[source] ClientError),
#[error("Could not bind the socket to an address")]
BindFailed(#[source] std::io::Error),
#[error("All wayland addresses in the range 0..1000 are already in use")]