- added more pathsubst variables
[util-vserver.git] / util-vserver / lib / vserver.h
1 // $Id$
2
3 // Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 //  
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2, or (at your option)
8 // any later version.
9 //  
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //  
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 #ifndef H_VSERVER_SYSCALL_H
20 #define H_VSERVER_SYSCALL_H
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 int call_new_s_context(int nbctx, int ctxs[], int remove_cap, int flags);
27 int call_set_ipv4root (unsigned long ip[], int nb,
28                        unsigned long bcast, unsigned long mask[]);
29 int call_chrootsafe (const char *dir);
30 int has_chrootsafe();
31 int call_set_ctxlimit (int res, long limit);
32
33 void    vserver_init();
34
35 #ifdef __cplusplus
36 }
37 #endif
38
39 #endif