]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - crypto/openssh/openbsd-compat/port-linux.h
Re-add opencsd as a vendor import from the dist directory
[FreeBSD/FreeBSD.git] / crypto / openssh / openbsd-compat / port-linux.h
1 /*
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
21 int ssh_selinux_enabled(void);
22 void ssh_selinux_setup_pty(char *, const char *);
23 void ssh_selinux_setup_exec_context(char *);
24 void ssh_selinux_change_context(const char *);
25 void ssh_selinux_setfscreatecon(const char *);
26 #endif
27
28 #ifdef LINUX_OOM_ADJUST
29 void oom_adjust_restore(void);
30 void oom_adjust_setup(void);
31 #endif
32
33 #endif /* ! _PORT_LINUX_H */