]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/analyze/analyze-security.h
Merge pull request #11827 from keszybz/pkgconfig-variables
[thirdparty/systemd.git] / src / analyze / analyze-security.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include "sd-bus.h"
5
6 typedef enum AnalyzeSecurityFlags {
7 ANALYZE_SECURITY_SHORT = 1 << 0,
8 ANALYZE_SECURITY_ONLY_LOADED = 1 << 1,
9 ANALYZE_SECURITY_ONLY_LONG_RUNNING = 1 << 2,
10 } AnalyzeSecurityFlags;
11
12 int analyze_security(sd_bus *bus, char **units, AnalyzeSecurityFlags flags);