mirror of https://github.com/xemu-project/xemu.git
15 lines
298 B
C
15 lines
298 B
C
/*
|
|
* Seccomp sandboxing for virtiofsd
|
|
*
|
|
* Copyright (C) 2019 Red Hat, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef VIRTIOFSD_PASSTHROUGH_SECCOMP_H
|
|
#define VIRTIOFSD_PASSTHROUGH_SECCOMP_H
|
|
|
|
void setup_seccomp(bool enable_syslog);
|
|
|
|
#endif /* VIRTIOFSD_PASSTHROUGH_SECCOMP_H */
|