diff options
author | Omar Polo <op@omarpolo.com> | 2021-03-20 08:42:08 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-03-20 08:42:08 +0000 |
commit | 62e001b06778c96d0deebceddf1913f7b57ab2d6 (patch) | |
tree | 086b6df9d90bb36ebc2a6a210966cc2dc158561e /gmid.h | |
parent | ad5301d1a00ba96c920fd89535cf9074b6e92088 (diff) |
move all sandbox-related code to sandbox.c
while there, add capsicum for the logger process
Diffstat (limited to 'gmid.h')
-rw-r--r-- | gmid.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -294,7 +294,9 @@ int recv_fd(int); int executor_main(struct imsgbuf*); /* sandbox.c */ -void sandbox(void); +void sandbox_server_process(void); +void sandbox_executor_process(void); +void sandbox_logger_process(void); /* utf8.c */ int valid_multibyte_utf8(struct parser*); |