]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/dbus-target.c
relicense to LGPLv2.1 (with exceptions)
[thirdparty/systemd.git] / src / core / dbus-target.c
CommitLineData
d6c9574f 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4139c1b2
LP
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
5430f7f2
LP
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
4139c1b2
LP
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
5430f7f2 16 Lesser General Public License for more details.
4139c1b2 17
5430f7f2 18 You should have received a copy of the GNU Lesser General Public License
4139c1b2
LP
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
6681ad4d
LP
22#include <errno.h>
23
4139c1b2
LP
24#include "dbus-unit.h"
25#include "dbus-target.h"
bfebab7f 26#include "dbus-common.h"
4139c1b2 27
4288f619
LP
28#define BUS_TARGET_INTERFACE \
29 " <interface name=\"org.freedesktop.systemd1.Target\">\n" \
30 " </interface>\n"
31
32#define INTROSPECTION \
33 DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE \
34 "<node>\n" \
35 BUS_UNIT_INTERFACE \
36 BUS_TARGET_INTERFACE \
37 BUS_PROPERTIES_INTERFACE \
c4e2ceae 38 BUS_PEER_INTERFACE \
4288f619
LP
39 BUS_INTROSPECTABLE_INTERFACE \
40 "</node>\n"
41
05feefe0
LP
42#define INTERFACES_LIST \
43 BUS_UNIT_INTERFACES_LIST \
44 "org.freedesktop.systemd1.Target\0"
45
9a60da28 46const char bus_target_interface[] _introspect_("Target") = BUS_TARGET_INTERFACE;
4139c1b2 47
5e8d1c9a 48DBusHandlerResult bus_target_message_handler(Unit *u, DBusConnection *c, DBusMessage *message) {
d200735e
MS
49 const BusBoundProperties bps[] = {
50 { "org.freedesktop.systemd1.Unit", bus_unit_properties, u },
51 { NULL, }
4139c1b2
LP
52 };
53
d200735e 54 return bus_default_message_handler(c, message, INTROSPECTION, INTERFACES_LIST, bps);
4139c1b2 55}