diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-06 23:19:35 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-06 23:19:35 -0400 |
commit | 30d9c5d71881b362e9808711b986964553494480 (patch) | |
tree | cd620dd23d3a8cddafaa9253618131bde7701f2f /src/libbus-proxy-core/driver.h | |
parent | f76d1e7b4baac2b43b97a2dca3ac5820d1fa30e1 (diff) | |
parent | 404c0969471ab1031e177cff27a5c152fde66bc2 (diff) |
Merge branch 'lukeshu/postmove' into lukeshu/master
# Conflicts:
# src/libsystemd/libsystemd-internal/Makefile
Diffstat (limited to 'src/libbus-proxy-core/driver.h')
-rw-r--r-- | src/libbus-proxy-core/driver.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/libbus-proxy-core/driver.h b/src/libbus-proxy-core/driver.h new file mode 100644 index 0000000000..cad7aa7851 --- /dev/null +++ b/src/libbus-proxy-core/driver.h @@ -0,0 +1,27 @@ +#pragma once + +/*** + This file is part of systemd. + + Copyright 2014 Lennart Poettering + + 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 <systemd/sd-bus.h> + +#include "bus-xml-policy.h" +#include "proxy.h" + +int bus_proxy_process_driver(Proxy *p, sd_bus *a, sd_bus *b, sd_bus_message *m, SharedPolicy *sp, const struct ucred *ucred, Set *owned_names); |