Linux Audio

Check our new training course

Loading...
v6.2
 1/* SPDX-License-Identifier: GPL-2.0 */
 
 2#ifndef _SELINUX_POLICYCAP_NAMES_H_
 3#define _SELINUX_POLICYCAP_NAMES_H_
 4
 5#include "policycap.h"
 6
 
 7/* Policy capability names */
 8const char *const selinux_policycap_names[__POLICYDB_CAP_MAX] = {
 9	"network_peer_controls",
10	"open_perms",
11	"extended_socket_class",
12	"always_check_network",
13	"cgroup_seclabel",
14	"nnp_nosuid_transition",
15	"genfs_seclabel_symlinks",
16	"ioctl_skip_cloexec"
 
17};
 
18
19#endif /* _SELINUX_POLICYCAP_NAMES_H_ */
v6.8
 1/* SPDX-License-Identifier: GPL-2.0 */
 2
 3#ifndef _SELINUX_POLICYCAP_NAMES_H_
 4#define _SELINUX_POLICYCAP_NAMES_H_
 5
 6#include "policycap.h"
 7
 8/* clang-format off */
 9/* Policy capability names */
10const char *const selinux_policycap_names[__POLICYDB_CAP_MAX] = {
11	"network_peer_controls",
12	"open_perms",
13	"extended_socket_class",
14	"always_check_network",
15	"cgroup_seclabel",
16	"nnp_nosuid_transition",
17	"genfs_seclabel_symlinks",
18	"ioctl_skip_cloexec",
19	"userspace_initial_context",
20};
21/* clang-format on */
22
23#endif /* _SELINUX_POLICYCAP_NAMES_H_ */