mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-17 13:07:54 +02:00
Merge pull request #1450 from apoelstra/2025-04--local-ci-fixes
syscall: whitelist network access for msghand thread
This commit is contained in:
commit
9748c00c33
1 changed files with 2 additions and 0 deletions
|
|
@ -867,6 +867,8 @@ void SetSyscallSandboxPolicy(SyscallSandboxPolicy syscall_policy)
|
|||
break;
|
||||
case SyscallSandboxPolicy::MESSAGE_HANDLER: // Thread: msghand
|
||||
seccomp_policy_builder.AllowFileSystem();
|
||||
// ELEMENTS: Need network to call CallMainChainRPC
|
||||
seccomp_policy_builder.AllowNetwork();
|
||||
break;
|
||||
case SyscallSandboxPolicy::NET: // Thread: net
|
||||
seccomp_policy_builder.AllowFileSystem();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue