1339949beSStephen Smalley /* SPDX-License-Identifier: GPL-2.0 */
2339949beSStephen Smalley #ifndef _SELINUX_POLICYCAP_NAMES_H_
3339949beSStephen Smalley #define _SELINUX_POLICYCAP_NAMES_H_
4339949beSStephen Smalley 
5339949beSStephen Smalley #include "policycap.h"
6339949beSStephen Smalley 
7339949beSStephen Smalley /* Policy capability names */
8339949beSStephen Smalley const char *selinux_policycap_names[__POLICYDB_CAPABILITY_MAX] = {
9339949beSStephen Smalley 	"network_peer_controls",
10339949beSStephen Smalley 	"open_perms",
11339949beSStephen Smalley 	"extended_socket_class",
12339949beSStephen Smalley 	"always_check_network",
13339949beSStephen Smalley 	"cgroup_seclabel",
14339949beSStephen Smalley 	"nnp_nosuid_transition",
15339949beSStephen Smalley 	"genfs_seclabel_symlinks"
16339949beSStephen Smalley };
17339949beSStephen Smalley 
18339949beSStephen Smalley #endif /* _SELINUX_POLICYCAP_NAMES_H_ */
19