Yet more AsRawSocket fixes
This commit is contained in:
parent
ddedda1d03
commit
b8c8b770e3
|
|
@ -950,7 +950,7 @@ impl<S: AsRawFd> AsRawFd for SslStream<S> {
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
impl<S: AsRawSocket> AsRawSocket for SslStream<S> {
|
impl<S: AsRawSocket> AsRawSocket for SslStream<S> {
|
||||||
fn as_raw_socket(&self) -> RawSocket {
|
fn as_raw_socket(&self) -> RawSocket {
|
||||||
self.0.as_raw_socket()
|
self.get_ref().as_raw_socket()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue