blob: d47c8eade6fdb5a02a8301775df9c5b0aea5ca99 [file] [log] [blame]
Stefan Hajnoczi4f8bde92019-03-13 09:32:51 +00001/*
2 * Seccomp sandboxing for virtiofsd
3 *
4 * Copyright (C) 2019 Red Hat, Inc.
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9#ifndef VIRTIOFSD_SECCOMP_H
10#define VIRTIOFSD_SECCOMP_H
11
Stefan Hajnoczif1856212019-06-26 10:25:54 +010012#include <stdbool.h>
13
14void setup_seccomp(bool enable_syslog);
Stefan Hajnoczi4f8bde92019-03-13 09:32:51 +000015
16#endif /* VIRTIOFSD_SECCOMP_H */