1*339949beSStephen Smalley /* SPDX-License-Identifier: GPL-2.0 */ 2*339949beSStephen Smalley #ifndef _SELINUX_POLICYCAP_NAMES_H_ 3*339949beSStephen Smalley #define _SELINUX_POLICYCAP_NAMES_H_ 4*339949beSStephen Smalley 5*339949beSStephen Smalley #include "policycap.h" 6*339949beSStephen Smalley 7*339949beSStephen Smalley /* Policy capability names */ 8*339949beSStephen Smalley const char *selinux_policycap_names[__POLICYDB_CAPABILITY_MAX] = { 9*339949beSStephen Smalley "network_peer_controls", 10*339949beSStephen Smalley "open_perms", 11*339949beSStephen Smalley "extended_socket_class", 12*339949beSStephen Smalley "always_check_network", 13*339949beSStephen Smalley "cgroup_seclabel", 14*339949beSStephen Smalley "nnp_nosuid_transition", 15*339949beSStephen Smalley "genfs_seclabel_symlinks" 16*339949beSStephen Smalley }; 17*339949beSStephen Smalley 18*339949beSStephen Smalley #endif /* _SELINUX_POLICYCAP_NAMES_H_ */ 19