Add UdpSocket peer_addr implementation for L4Re
This commit is contained in:
parent
7e73cd48c4
commit
214110bb4c
1 changed files with 4 additions and 1 deletions
|
|
@ -292,6 +292,10 @@ pub mod net {
|
|||
|
||||
pub fn into_socket(self) -> Socket { self.inner }
|
||||
|
||||
pub fn peer_addr(&self) -> io::Result<SocketAddr> {
|
||||
unimpl!();
|
||||
}
|
||||
|
||||
pub fn socket_addr(&self) -> io::Result<SocketAddr> {
|
||||
unimpl!();
|
||||
}
|
||||
|
|
@ -463,4 +467,3 @@ pub mod net {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue