summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2018-04-05 18:40:28 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2018-04-05 18:40:28 -0400
commit0992ba0b6ea4c01dee0fbcf30068e64be638162b (patch)
treefba3ab0abc43f95f8c7008540bae9ccd23d639af /src/include
parentMerge pull request #1864 from glitsj16/enchant (diff)
downloadfirejail-0992ba0b6ea4c01dee0fbcf30068e64be638162b.tar.gz
firejail-0992ba0b6ea4c01dee0fbcf30068e64be638162b.tar.zst
firejail-0992ba0b6ea4c01dee0fbcf30068e64be638162b.zip
user access database in /etc/firejail/firejail.users - more to come
Diffstat (limited to 'src/include')
-rw-r--r--src/include/firejail_user.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/include/firejail_user.h b/src/include/firejail_user.h
new file mode 100644
index 000000000..a7d30225e
--- /dev/null
+++ b/src/include/firejail_user.h
@@ -0,0 +1,30 @@
1/*
2 * Copyright (C) 2014-2018 Firejail Authors
3 *
4 * This file is part of firejail project
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20#ifndef FIREJAIL_USER_H
21#define FIREJAIL_USER_H
22
23
24// returns 1 if the user is found in the database or if the database was not created
25int firejail_user_check(const char *name);
26
27// add a user to the database
28void firejail_user_add(const char *name);
29
30#endif