This commit is contained in:
Steven Fackler 2020-04-27 04:50:03 -07:00
parent b00afb5782
commit c68f23ff6d

View file

@ -49,7 +49,7 @@ impl TcpStream {
}
pub fn is_read_vectored(&self) -> bool {
unsupported()
true
}
pub fn write(&self, _: &[u8]) -> io::Result<usize> {
@ -61,7 +61,7 @@ impl TcpStream {
}
pub fn is_write_vectored(&self) -> bool {
unsupported()
true
}
pub fn peer_addr(&self) -> io::Result<SocketAddr> {