2019-10-06 15:26:14 +00:00
|
|
|
use crate::convert::TryFrom;
|
2019-11-27 10:28:39 -08:00
|
|
|
use crate::fmt;
|
2020-03-19 08:34:22 +01:00
|
|
|
use crate::io::{self, ErrorKind, IoSlice, IoSliceMut};
|
2020-06-13 20:51:00 +02:00
|
|
|
use crate::net::{IpAddr, Ipv4Addr, Ipv6Addr, Shutdown, SocketAddr};
|
2019-10-06 15:26:14 +00:00
|
|
|
use crate::str;
|
2020-06-13 20:51:00 +02:00
|
|
|
use crate::sync::Arc;
|
2020-03-19 08:34:22 +01:00
|
|
|
use crate::sys::hermit::abi;
|
2020-06-13 20:51:00 +02:00
|
|
|
use crate::sys::hermit::abi::IpAddress::{Ipv4, Ipv6};
|
2019-10-06 15:26:14 +00:00
|
|
|
use crate::sys::{unsupported, Void};
|
2020-06-13 20:51:00 +02:00
|
|
|
use crate::sys_common::AsInner;
|
2019-10-06 15:26:14 +00:00
|
|
|
use crate::time::Duration;
|
|
|
|
|
|
2020-03-19 08:34:22 +01:00
|
|
|
/// Checks whether the HermitCore's socket interface has been started already, and
|
|
|
|
|
/// if not, starts it.
|
|
|
|
|
pub fn init() -> io::Result<()> {
|
|
|
|
|
if abi::network_init() < 0 {
|
|
|
|
|
return Err(io::Error::new(ErrorKind::Other, "Unable to initialize network interface"));
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-06 15:26:14 +00:00
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-13 20:51:00 +02:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
|
pub struct Socket(abi::Handle);
|
|
|
|
|
|
|
|
|
|
impl AsInner<abi::Handle> for Socket {
|
|
|
|
|
fn as_inner(&self) -> &abi::Handle {
|
|
|
|
|
&self.0
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Drop for Socket {
|
|
|
|
|
fn drop(&mut self) {
|
|
|
|
|
let _ = abi::tcpstream::close(self.0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
|
pub struct TcpStream(Arc<Socket>);
|
2019-10-06 15:26:14 +00:00
|
|
|
|
|
|
|
|
impl TcpStream {
|
2020-03-19 08:34:22 +01:00
|
|
|
pub fn connect(addr: io::Result<&SocketAddr>) -> io::Result<TcpStream> {
|
|
|
|
|
let addr = addr?;
|
|
|
|
|
|
|
|
|
|
match abi::tcpstream::connect(addr.ip().to_string().as_bytes(), addr.port(), None) {
|
2020-06-13 20:51:00 +02:00
|
|
|
Ok(handle) => Ok(TcpStream(Arc::new(Socket(handle)))),
|
2020-03-19 08:34:22 +01:00
|
|
|
_ => {
|
|
|
|
|
Err(io::Error::new(ErrorKind::Other, "Unable to initiate a connection on a socket"))
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2020-03-19 08:34:22 +01:00
|
|
|
pub fn connect_timeout(saddr: &SocketAddr, duration: Duration) -> io::Result<TcpStream> {
|
|
|
|
|
match abi::tcpstream::connect(
|
|
|
|
|
saddr.ip().to_string().as_bytes(),
|
|
|
|
|
saddr.port(),
|
|
|
|
|
Some(duration.as_millis() as u64),
|
|
|
|
|
) {
|
2020-06-13 20:51:00 +02:00
|
|
|
Ok(handle) => Ok(TcpStream(Arc::new(Socket(handle)))),
|
2020-03-19 08:34:22 +01:00
|
|
|
_ => {
|
|
|
|
|
Err(io::Error::new(ErrorKind::Other, "Unable to initiate a connection on a socket"))
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2020-03-19 08:34:22 +01:00
|
|
|
pub fn set_read_timeout(&self, duration: Option<Duration>) -> io::Result<()> {
|
2020-06-13 20:51:00 +02:00
|
|
|
abi::tcpstream::set_read_timeout(*self.0.as_inner(), duration.map(|d| d.as_millis() as u64))
|
2020-03-19 08:34:22 +01:00
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "Unable to set timeout value"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2020-03-19 08:34:22 +01:00
|
|
|
pub fn set_write_timeout(&self, duration: Option<Duration>) -> io::Result<()> {
|
2020-06-13 20:51:00 +02:00
|
|
|
abi::tcpstream::set_write_timeout(
|
|
|
|
|
*self.0.as_inner(),
|
|
|
|
|
duration.map(|d| d.as_millis() as u64),
|
|
|
|
|
)
|
|
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "Unable to set timeout value"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn read_timeout(&self) -> io::Result<Option<Duration>> {
|
2020-06-13 20:51:00 +02:00
|
|
|
let duration = abi::tcpstream::get_read_timeout(*self.0.as_inner())
|
2020-03-19 08:34:22 +01:00
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "Unable to determine timeout value"))?;
|
|
|
|
|
|
|
|
|
|
Ok(duration.map(|d| Duration::from_millis(d)))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn write_timeout(&self) -> io::Result<Option<Duration>> {
|
2020-06-13 20:51:00 +02:00
|
|
|
let duration = abi::tcpstream::get_write_timeout(*self.0.as_inner())
|
2020-03-19 08:34:22 +01:00
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "Unable to determine timeout value"))?;
|
|
|
|
|
|
|
|
|
|
Ok(duration.map(|d| Duration::from_millis(d)))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2020-03-19 08:34:22 +01:00
|
|
|
pub fn peek(&self, buf: &mut [u8]) -> io::Result<usize> {
|
2020-06-13 20:51:00 +02:00
|
|
|
abi::tcpstream::peek(*self.0.as_inner(), buf)
|
2020-03-19 08:34:22 +01:00
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "set_nodelay failed"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2020-03-19 08:34:22 +01:00
|
|
|
pub fn read(&self, buffer: &mut [u8]) -> io::Result<usize> {
|
|
|
|
|
self.read_vectored(&mut [IoSliceMut::new(buffer)])
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2020-03-19 08:34:22 +01:00
|
|
|
pub fn read_vectored(&self, ioslice: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
|
|
|
|
|
let mut size: usize = 0;
|
|
|
|
|
|
|
|
|
|
for i in ioslice.iter_mut() {
|
2020-06-13 20:51:00 +02:00
|
|
|
let ret = abi::tcpstream::read(*self.0.as_inner(), &mut i[0..])
|
|
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "Unable to read on socket"))?;
|
|
|
|
|
|
|
|
|
|
if ret != 0 {
|
|
|
|
|
size += ret;
|
2020-03-19 08:34:22 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(size)
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2020-01-03 11:26:05 -08:00
|
|
|
#[inline]
|
2020-03-11 18:02:52 -07:00
|
|
|
pub fn is_read_vectored(&self) -> bool {
|
2020-01-03 11:26:05 -08:00
|
|
|
true
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-19 08:34:22 +01:00
|
|
|
pub fn write(&self, buffer: &[u8]) -> io::Result<usize> {
|
|
|
|
|
self.write_vectored(&[IoSlice::new(buffer)])
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2020-03-19 08:34:22 +01:00
|
|
|
pub fn write_vectored(&self, ioslice: &[IoSlice<'_>]) -> io::Result<usize> {
|
|
|
|
|
let mut size: usize = 0;
|
|
|
|
|
|
|
|
|
|
for i in ioslice.iter() {
|
2020-06-13 20:51:00 +02:00
|
|
|
size += abi::tcpstream::write(*self.0.as_inner(), i)
|
2020-03-19 08:34:22 +01:00
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "Unable to write on socket"))?;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(size)
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2020-01-03 11:26:05 -08:00
|
|
|
#[inline]
|
2020-03-11 18:02:52 -07:00
|
|
|
pub fn is_write_vectored(&self) -> bool {
|
2020-01-03 11:26:05 -08:00
|
|
|
true
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-06 15:26:14 +00:00
|
|
|
pub fn peer_addr(&self) -> io::Result<SocketAddr> {
|
2020-06-13 20:51:00 +02:00
|
|
|
let (ipaddr, port) = abi::tcpstream::peer_addr(*self.0.as_inner())
|
|
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "peer_addr failed"))?;
|
|
|
|
|
|
|
|
|
|
let saddr = match ipaddr {
|
|
|
|
|
Ipv4(ref addr) => SocketAddr::new(
|
|
|
|
|
IpAddr::V4(Ipv4Addr::new(addr.0[0], addr.0[1], addr.0[2], addr.0[3])),
|
|
|
|
|
port,
|
|
|
|
|
),
|
2020-06-15 08:43:08 +02:00
|
|
|
Ipv6(ref addr) => SocketAddr::new(
|
2020-06-15 08:43:44 +02:00
|
|
|
IpAddr::V6(Ipv6Addr::new(
|
|
|
|
|
((addr.0[0] as u16) << 8) | addr.0[1] as u16,
|
|
|
|
|
((addr.0[2] as u16) << 8) | addr.0[3] as u16,
|
|
|
|
|
((addr.0[4] as u16) << 8) | addr.0[5] as u16,
|
|
|
|
|
((addr.0[6] as u16) << 8) | addr.0[7] as u16,
|
|
|
|
|
((addr.0[8] as u16) << 8) | addr.0[9] as u16,
|
|
|
|
|
((addr.0[10] as u16) << 8) | addr.0[11] as u16,
|
|
|
|
|
((addr.0[12] as u16) << 8) | addr.0[13] as u16,
|
|
|
|
|
((addr.0[14] as u16) << 8) | addr.0[15] as u16)),
|
2020-06-15 08:43:08 +02:00
|
|
|
port,
|
|
|
|
|
),
|
2020-06-13 20:51:00 +02:00
|
|
|
_ => {
|
|
|
|
|
return Err(io::Error::new(ErrorKind::Other, "peer_addr failed"));
|
2020-06-15 08:43:08 +02:00
|
|
|
},
|
2020-06-13 20:51:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Ok(saddr)
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn socket_addr(&self) -> io::Result<SocketAddr> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "socket_addr isn't supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2020-03-19 08:34:22 +01:00
|
|
|
pub fn shutdown(&self, how: Shutdown) -> io::Result<()> {
|
2020-06-13 20:51:00 +02:00
|
|
|
abi::tcpstream::shutdown(*self.0.as_inner(), how as i32)
|
2020-03-19 08:34:22 +01:00
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "unable to shutdown socket"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn duplicate(&self) -> io::Result<TcpStream> {
|
2020-06-13 20:51:00 +02:00
|
|
|
Ok(self.clone())
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2020-03-19 08:34:22 +01:00
|
|
|
pub fn set_nodelay(&self, mode: bool) -> io::Result<()> {
|
2020-06-13 20:51:00 +02:00
|
|
|
abi::tcpstream::set_nodelay(*self.0.as_inner(), mode)
|
2020-03-19 08:34:22 +01:00
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "set_nodelay failed"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn nodelay(&self) -> io::Result<bool> {
|
2020-06-13 20:51:00 +02:00
|
|
|
abi::tcpstream::nodelay(*self.0.as_inner())
|
2020-03-19 08:34:22 +01:00
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "nodelay failed"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2020-03-19 08:34:22 +01:00
|
|
|
pub fn set_ttl(&self, tll: u32) -> io::Result<()> {
|
2020-06-13 20:51:00 +02:00
|
|
|
abi::tcpstream::set_tll(*self.0.as_inner(), tll)
|
2020-03-19 08:34:22 +01:00
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "unable to set TTL"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn ttl(&self) -> io::Result<u32> {
|
2020-06-13 20:51:00 +02:00
|
|
|
abi::tcpstream::get_tll(*self.0.as_inner())
|
2020-03-19 08:34:22 +01:00
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "unable to get TTL"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn take_error(&self) -> io::Result<Option<io::Error>> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "take_error isn't supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2020-03-19 08:34:22 +01:00
|
|
|
pub fn set_nonblocking(&self, mode: bool) -> io::Result<()> {
|
2020-06-13 20:51:00 +02:00
|
|
|
abi::tcpstream::set_nonblocking(*self.0.as_inner(), mode)
|
2020-03-19 08:34:22 +01:00
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "unable to set blocking mode"))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-06 15:26:14 +00:00
|
|
|
impl fmt::Debug for TcpStream {
|
|
|
|
|
fn fmt(&self, _f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2020-03-19 08:34:22 +01:00
|
|
|
Ok(())
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-13 20:51:00 +02:00
|
|
|
#[derive(Clone)]
|
|
|
|
|
pub struct TcpListener(SocketAddr);
|
2019-10-06 15:26:14 +00:00
|
|
|
|
|
|
|
|
impl TcpListener {
|
2020-06-13 20:51:00 +02:00
|
|
|
pub fn bind(addr: io::Result<&SocketAddr>) -> io::Result<TcpListener> {
|
|
|
|
|
let addr = addr?;
|
|
|
|
|
|
|
|
|
|
Ok(TcpListener(*addr))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn socket_addr(&self) -> io::Result<SocketAddr> {
|
2020-06-13 20:51:00 +02:00
|
|
|
Ok(self.0)
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn accept(&self) -> io::Result<(TcpStream, SocketAddr)> {
|
2020-06-13 20:51:00 +02:00
|
|
|
let (handle, ipaddr, port) = abi::tcplistener::accept(self.0.port())
|
|
|
|
|
.map_err(|_| io::Error::new(ErrorKind::Other, "accept failed"))?;
|
|
|
|
|
let saddr = match ipaddr {
|
|
|
|
|
Ipv4(ref addr) => SocketAddr::new(
|
|
|
|
|
IpAddr::V4(Ipv4Addr::new(addr.0[0], addr.0[1], addr.0[2], addr.0[3])),
|
|
|
|
|
port,
|
|
|
|
|
),
|
2020-06-15 08:43:08 +02:00
|
|
|
Ipv6(ref addr) => SocketAddr::new(
|
2020-06-15 08:43:44 +02:00
|
|
|
IpAddr::V6(Ipv6Addr::new(
|
|
|
|
|
((addr.0[0] as u16) << 8) | addr.0[1] as u16,
|
|
|
|
|
((addr.0[2] as u16) << 8) | addr.0[3] as u16,
|
|
|
|
|
((addr.0[4] as u16) << 8) | addr.0[5] as u16,
|
|
|
|
|
((addr.0[6] as u16) << 8) | addr.0[7] as u16,
|
|
|
|
|
((addr.0[8] as u16) << 8) | addr.0[9] as u16,
|
|
|
|
|
((addr.0[10] as u16) << 8) | addr.0[11] as u16,
|
|
|
|
|
((addr.0[12] as u16) << 8) | addr.0[13] as u16,
|
|
|
|
|
((addr.0[14] as u16) << 8) | addr.0[15] as u16)),
|
2020-06-15 08:43:08 +02:00
|
|
|
port,
|
|
|
|
|
),
|
2020-06-13 20:51:00 +02:00
|
|
|
_ => {
|
|
|
|
|
return Err(io::Error::new(ErrorKind::Other, "accept failed"));
|
2020-06-15 08:43:08 +02:00
|
|
|
},
|
2020-06-13 20:51:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Ok((TcpStream(Arc::new(Socket(handle))), saddr))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn duplicate(&self) -> io::Result<TcpListener> {
|
2020-06-13 20:51:00 +02:00
|
|
|
Ok(self.clone())
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_ttl(&self, _: u32) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn ttl(&self) -> io::Result<u32> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_only_v6(&self, _: bool) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn only_v6(&self) -> io::Result<bool> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn take_error(&self) -> io::Result<Option<io::Error>> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_nonblocking(&self, _: bool) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl fmt::Debug for TcpListener {
|
|
|
|
|
fn fmt(&self, _f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2020-03-19 08:34:22 +01:00
|
|
|
Ok(())
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-19 08:34:22 +01:00
|
|
|
pub struct UdpSocket(abi::Handle);
|
2019-10-06 15:26:14 +00:00
|
|
|
|
|
|
|
|
impl UdpSocket {
|
|
|
|
|
pub fn bind(_: io::Result<&SocketAddr>) -> io::Result<UdpSocket> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn peer_addr(&self) -> io::Result<SocketAddr> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn socket_addr(&self) -> io::Result<SocketAddr> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn recv_from(&self, _: &mut [u8]) -> io::Result<(usize, SocketAddr)> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn peek_from(&self, _: &mut [u8]) -> io::Result<(usize, SocketAddr)> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn send_to(&self, _: &[u8], _: &SocketAddr) -> io::Result<usize> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn duplicate(&self) -> io::Result<UdpSocket> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_read_timeout(&self, _: Option<Duration>) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_write_timeout(&self, _: Option<Duration>) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn read_timeout(&self) -> io::Result<Option<Duration>> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn write_timeout(&self) -> io::Result<Option<Duration>> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_broadcast(&self, _: bool) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn broadcast(&self) -> io::Result<bool> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_multicast_loop_v4(&self, _: bool) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn multicast_loop_v4(&self) -> io::Result<bool> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_multicast_ttl_v4(&self, _: u32) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn multicast_ttl_v4(&self) -> io::Result<u32> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_multicast_loop_v6(&self, _: bool) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn multicast_loop_v6(&self) -> io::Result<bool> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2019-11-27 10:28:39 -08:00
|
|
|
pub fn join_multicast_v4(&self, _: &Ipv4Addr, _: &Ipv4Addr) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2019-11-27 10:28:39 -08:00
|
|
|
pub fn join_multicast_v6(&self, _: &Ipv6Addr, _: u32) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2019-11-27 10:28:39 -08:00
|
|
|
pub fn leave_multicast_v4(&self, _: &Ipv4Addr, _: &Ipv4Addr) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
2019-11-27 10:28:39 -08:00
|
|
|
pub fn leave_multicast_v6(&self, _: &Ipv6Addr, _: u32) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_ttl(&self, _: u32) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn ttl(&self) -> io::Result<u32> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn take_error(&self) -> io::Result<Option<io::Error>> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_nonblocking(&self, _: bool) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn recv(&self, _: &mut [u8]) -> io::Result<usize> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn peek(&self, _: &mut [u8]) -> io::Result<usize> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn send(&self, _: &[u8]) -> io::Result<usize> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn connect(&self, _: io::Result<&SocketAddr>) -> io::Result<()> {
|
2020-03-19 08:34:22 +01:00
|
|
|
Err(io::Error::new(ErrorKind::Other, "not supported"))
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl fmt::Debug for UdpSocket {
|
|
|
|
|
fn fmt(&self, _f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2020-03-19 08:34:22 +01:00
|
|
|
Ok(())
|
2019-10-06 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct LookupHost(Void);
|
|
|
|
|
|
|
|
|
|
impl LookupHost {
|
|
|
|
|
pub fn port(&self) -> u16 {
|
|
|
|
|
match self.0 {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Iterator for LookupHost {
|
|
|
|
|
type Item = SocketAddr;
|
|
|
|
|
fn next(&mut self) -> Option<SocketAddr> {
|
|
|
|
|
match self.0 {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl TryFrom<&str> for LookupHost {
|
|
|
|
|
type Error = io::Error;
|
|
|
|
|
|
|
|
|
|
fn try_from(_v: &str) -> io::Result<LookupHost> {
|
|
|
|
|
unsupported()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'a> TryFrom<(&'a str, u16)> for LookupHost {
|
|
|
|
|
type Error = io::Error;
|
|
|
|
|
|
|
|
|
|
fn try_from(_v: (&'a str, u16)) -> io::Result<LookupHost> {
|
|
|
|
|
unsupported()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[allow(nonstandard_style)]
|
|
|
|
|
pub mod netc {
|
|
|
|
|
pub const AF_INET: u8 = 0;
|
|
|
|
|
pub const AF_INET6: u8 = 1;
|
|
|
|
|
pub type sa_family_t = u8;
|
|
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
|
pub struct in_addr {
|
|
|
|
|
pub s_addr: u32,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
|
pub struct sockaddr_in {
|
|
|
|
|
pub sin_family: sa_family_t,
|
|
|
|
|
pub sin_port: u16,
|
|
|
|
|
pub sin_addr: in_addr,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
|
pub struct in6_addr {
|
|
|
|
|
pub s6_addr: [u8; 16],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
|
pub struct sockaddr_in6 {
|
|
|
|
|
pub sin6_family: sa_family_t,
|
|
|
|
|
pub sin6_port: u16,
|
|
|
|
|
pub sin6_addr: in6_addr,
|
|
|
|
|
pub sin6_flowinfo: u32,
|
|
|
|
|
pub sin6_scope_id: u32,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
2019-11-27 10:28:39 -08:00
|
|
|
pub struct sockaddr {}
|
2019-10-06 15:26:14 +00:00
|
|
|
|
|
|
|
|
pub type socklen_t = usize;
|
|
|
|
|
}
|