Skip to content

Commit 81d5fb5

Browse files
committed
Add UdpSocket peer_addr implementation for Wasm
1 parent 214110b commit 81d5fb5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/libstd/sys/wasm/net.rs

+4
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ impl UdpSocket {
156156
unsupported()
157157
}
158158

159+
pub fn peer_addr(&self) -> io::Result<SocketAddr> {
160+
match self.0 {}
161+
}
162+
159163
pub fn socket_addr(&self) -> io::Result<SocketAddr> {
160164
match self.0 {}
161165
}

0 commit comments

Comments
 (0)