f185621d41
Sometimes collecting output from stderr is inconvenient or does not fit within the overall logging architecture. Add syslog(3) support for cases where stderr cannot be used. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> dgilbert: Reworked as a logging function Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
17 lines
284 B
C
17 lines
284 B
C
/*
|
|
* Seccomp sandboxing for virtiofsd
|
|
*
|
|
* Copyright (C) 2019 Red Hat, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef VIRTIOFSD_SECCOMP_H
|
|
#define VIRTIOFSD_SECCOMP_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
void setup_seccomp(bool enable_syslog);
|
|
|
|
#endif /* VIRTIOFSD_SECCOMP_H */
|