blob: 3c22a854dbce4770d3f465cb9498164275a6cfc2 [file] [log] [blame]
Damien Miller73b42d22006-04-22 21:26:08 +10001/*
2 * Copyright (c) 2006 Damien Miller <djm@openbsd.org>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#ifndef _PORT_LINUX_H
18#define _PORT_LINUX_H
19
20#ifdef WITH_SELINUX
Darren Tuckerb8eb5862008-03-27 07:27:20 +110021int ssh_selinux_enabled(void);
Damien Miller73b42d22006-04-22 21:26:08 +100022void ssh_selinux_setup_pty(char *, const char *);
23void ssh_selinux_setup_exec_context(char *);
Darren Tucker4d6656b2009-10-24 15:04:12 +110024void ssh_selinux_change_context(const char *);
Damien Miller71adf122011-01-25 12:16:15 +110025void ssh_selinux_setfscreatecon(const char *);
Damien Miller73b42d22006-04-22 21:26:08 +100026#endif
27
Darren Tuckerc8802aa2009-12-08 13:39:48 +110028#ifdef LINUX_OOM_ADJUST
29void oom_adjust_restore(void);
30void oom_adjust_setup(void);
31#endif
32
Damien Miller73b42d22006-04-22 21:26:08 +100033#endif /* ! _PORT_LINUX_H */