mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
a10e763b87
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation version 2 extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 135 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190531081036.435762997@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
25 lines
607 B
C
25 lines
607 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Interface to booleans in the security server. This is exported
|
|
* for the selinuxfs.
|
|
*
|
|
* Author: Karl MacMillan <kmacmillan@tresys.com>
|
|
*
|
|
* Copyright (C) 2003 - 2004 Tresys Technology, LLC
|
|
*/
|
|
|
|
#ifndef _SELINUX_CONDITIONAL_H_
|
|
#define _SELINUX_CONDITIONAL_H_
|
|
|
|
#include "security.h"
|
|
|
|
int security_get_bools(struct selinux_state *state,
|
|
int *len, char ***names, int **values);
|
|
|
|
int security_set_bools(struct selinux_state *state,
|
|
int len, int *values);
|
|
|
|
int security_get_bool_value(struct selinux_state *state,
|
|
int index);
|
|
|
|
#endif
|