This commit is contained in:
bjorn3
2026-03-27 22:56:11 +01:00
parent cc1dea2a82
commit ec4bc65323
5 changed files with 94 additions and 33 deletions
+6 -1
View File
@@ -149,7 +149,12 @@ impl<'a> SchemeSocket for RawSocket<'a> {
Ok(i)
}
fn handle_recvmsg(&mut self, file: &mut SchemeFile<Self>, how:&mut [u8], flags:usize) -> SyscallResult<usize> {
fn handle_recvmsg(
&mut self,
file: &mut SchemeFile<Self>,
how: &mut [u8],
flags: usize,
) -> SyscallResult<usize> {
return Err(SyscallError::new(syscall::EOPNOTSUPP));
}