diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2014-12-04 18:32:55 +0100 |
---|---|---|
committer | David Herrmann <dh.herrmann@gmail.com> | 2015-04-10 18:04:10 +0200 |
commit | 14684f858e4e5b0c00bc5878dd85cf2e0c68e053 (patch) | |
tree | 7da1c577ad4608005babf6476ca74b3d9982f9b6 /src/shared/authority-agent.h | |
parent | a813b30b68dd57a3d6b93778ee95b43dee1cc9fd (diff) |
authority: add authorization and authentication daemonwip
WIP
Diffstat (limited to 'src/shared/authority-agent.h')
-rw-r--r-- | src/shared/authority-agent.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/shared/authority-agent.h b/src/shared/authority-agent.h new file mode 100644 index 000000000..723c514b4 --- /dev/null +++ b/src/shared/authority-agent.h @@ -0,0 +1,34 @@ +/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ + +#pragma once + +/*** + This file is part of systemd. + + Copyright 2014-2015 David Herrmann <dh.herrmann@gmail.com> + + systemd is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or + (at your option) any later version. + + systemd is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with systemd; If not, see <http://www.gnu.org/licenses/>. +***/ + +#include <stdlib.h> +#include "macro.h" +#include "sd-bus.h" +#include "util.h" + +typedef struct AuthorityAgent AuthorityAgent; + +int authority_agent_new(AuthorityAgent **out, int ttyin, int ttyout, sd_bus *bus); +AuthorityAgent *authority_agent_free(AuthorityAgent *agent); + +DEFINE_TRIVIAL_CLEANUP_FUNC(AuthorityAgent*, authority_agent_free); |