]> git.ipfire.org Git - people/ms/systemd.git/blame - automount.h
Remove .h files from _SOURCES
[people/ms/systemd.git] / automount.h
CommitLineData
5cb5a6ff
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3#ifndef fooautomounthfoo
4#define fooautomounthfoo
5
a7334b09
LP
6/***
7 This file is part of systemd.
8
9 Copyright 2010 Lennart Poettering
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23***/
24
5cb5a6ff
LP
25typedef struct Automount Automount;
26
87f0e418 27#include "unit.h"
5cb5a6ff
LP
28
29typedef enum AutomountState {
30 AUTOMOUNT_DEAD,
5cb5a6ff
LP
31 AUTOMOUNT_WAITING,
32 AUTOMOUNT_RUNNING,
5cb5a6ff 33 AUTOMOUNT_MAINTAINANCE,
e537352b
LP
34 _AUTOMOUNT_STATE_MAX,
35 _AUTOMOUNT_STATE_INVALID = -1
5cb5a6ff
LP
36} AutomountState;
37
5cb5a6ff
LP
38struct Automount {
39 Meta meta;
40
a16e1123 41 AutomountState state, deserialized_state;
5cb5a6ff 42
8d567588
LP
43 char *where;
44
5cb5a6ff 45 Mount *mount;
8d567588
LP
46
47 int pipe_fd;
48 Watch pipe_watch;
49 dev_t dev_id;
50
51 Set *tokens;
52
53 bool failure:1;
5cb5a6ff
LP
54};
55
87f0e418 56extern const UnitVTable automount_vtable;
5cb5a6ff 57
8d567588
LP
58int automount_send_ready(Automount *a, int status);
59
a16e1123
LP
60const char* automount_state_to_string(AutomountState i);
61AutomountState automount_state_from_string(const char *s);
62
5cb5a6ff 63#endif