diff --git a/src/acme.c b/src/acme.c index 7416535..c67f853 100644 --- a/src/acme.c +++ b/src/acme.c @@ -54,10 +54,14 @@ /* The syscalls our acme worker is allowed to perform, only. */ static struct sock_filter filter_acme[] = { /* Net related. */ +#if defined(SYS_poll) KORE_SYSCALL_ALLOW(poll), +#endif KORE_SYSCALL_ALLOW(sendto), KORE_SYSCALL_ALLOW(recvfrom), +#if defined(SYS_epoll_wait) KORE_SYSCALL_ALLOW(epoll_wait), +#endif KORE_SYSCALL_ALLOW(epoll_pwait), /* Process things. */