blob: 28d4d768378d68b735784e30c52d5e7c601e1b00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
use {UnixListener, UnixStream};
use futures::{Stream, Poll};
use std::io;
/// Stream of listeners
#[derive(Debug)]
pub struct Incoming {
inner: UnixListener,
}
impl Incoming {
pub(crate) fn new(listener: UnixListener) -> Incoming {
Incoming { inner: listener }
}
}
impl Stream for Incoming {
type Item = UnixStream;
type Error = io::Error;
fn poll(&mut self) -> Poll<Option<Self::Item>, io::Error> {
Ok(Some(try_ready!(self.inner.poll_accept()).0).into())
}
}
|