]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/automount.h
Merge pull request #3156 from keszybz/duid-settings
[thirdparty/systemd.git] / src / core / automount.h
1 #pragma once
2
3 /***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 typedef struct Automount Automount;
23
24 #include "unit.h"
25
26 typedef enum AutomountResult {
27 AUTOMOUNT_SUCCESS,
28 AUTOMOUNT_FAILURE_RESOURCES,
29 AUTOMOUNT_FAILURE_START_LIMIT_HIT,
30 AUTOMOUNT_FAILURE_MOUNT_START_LIMIT_HIT,
31 _AUTOMOUNT_RESULT_MAX,
32 _AUTOMOUNT_RESULT_INVALID = -1
33 } AutomountResult;
34
35 struct Automount {
36 Unit meta;
37
38 AutomountState state, deserialized_state;
39
40 char *where;
41 usec_t timeout_idle_usec;
42
43 int pipe_fd;
44 sd_event_source *pipe_event_source;
45 mode_t directory_mode;
46 dev_t dev_id;
47
48 Set *tokens;
49 Set *expire_tokens;
50
51 sd_event_source *expire_event_source;
52
53 AutomountResult result;
54 };
55
56 extern const UnitVTable automount_vtable;
57
58 const char* automount_result_to_string(AutomountResult i) _const_;
59 AutomountResult automount_result_from_string(const char *s) _pure_;