Skip to content
Snippets Groups Projects
Verified Commit 851272ff authored by Jacob Lorentzon's avatar Jacob Lorentzon
Browse files

Allow getting the inner fd of a scheme socket.

parent 2c4a8539
No related branches found
No related tags found
No related merge requests found
......@@ -138,6 +138,9 @@ impl Socket {
pub fn write_responses(&self, buf: &[Response], behavior: SignalBehavior) -> Result<usize> {
write_responses(self.0.raw(), buf, behavior)
}
pub fn inner(&self) -> &libredox::Fd {
&self.0
}
}
#[repr(transparent)]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment