Lines Matching full:socket
62 /// Cannot bind to Unix socket
63 #[error("Error binding to socket")]
66 /// Cannot accept connection from Unix socket
78 /// Cannot remove the serial socket
79 #[error("Error removing serial socket")]
93 Socket = 2, enumerator
104 2 => Socket, in from()
128 socket: Option<PathBuf>, in new()
162 ConsoleOutput::Socket(ref fd) => { in new()
163 if let Some(path_in_socket) = socket { in new()
182 let epoll_fd_data = if let ConsoleOutput::Socket(_) = output { in new()
183 EpollDispatch::Socket in new()
297 if matches!(in_file, ConsoleOutput::Socket(_)) && num_events == 0 { in start_thread()
313 EpollDispatch::Socket => { in start_thread()
322 let ConsoleOutput::Socket(ref listener) = in_file else { in start_thread()
326 // Events on the listening socket will be connection requests. in start_thread()
352 ConsoleOutput::Socket(_) => { in start_thread()
358 info!("Remote end closed serial socket"); in start_thread()
435 if let ConsoleOutput::Socket(_) = self.in_file { in drop()