Skip to content

Commit d59dfdf

Browse files
alyssaisrbradford
authored andcommitted
vmm: seccomp: allow http-server to use sendto
Fixes: cloud-hypervisor#7449 Signed-off-by: Alyssa Ross <hi@alyssa.is>
1 parent 9158c36 commit d59dfdf

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

vmm/src/seccomp_filters.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -859,6 +859,7 @@ fn http_api_thread_rules() -> Result<Vec<(i64, Vec<SeccompRule>)>, BackendError>
859859
(libc::SYS_recvfrom, vec![]),
860860
(libc::SYS_recvmsg, vec![]),
861861
(libc::SYS_sched_yield, vec![]),
862+
(libc::SYS_sendto, vec![]),
862863
(libc::SYS_sigaltstack, vec![]),
863864
(libc::SYS_write, vec![]),
864865
(libc::SYS_rt_sigprocmask, vec![]),

0 commit comments

Comments
 (0)