diff options
Diffstat (limited to 'sandbox.c')
-rw-r--r-- | sandbox.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -36,6 +36,13 @@ sandbox_server_process(void) } void +sandbox_crypto_process(void) +{ + if (pledge("stdio recvfd", NULL) == -1) + fatal("pledge"); +} + +void sandbox_logger_process(void) { if (pledge("stdio recvfd", NULL) == -1) @@ -59,6 +66,12 @@ sandbox_server_process(void) } void +sandbox_crypto_process(void) +{ + return; +} + +void sandbox_logger_process(void) { return; |