more work on xml configuration setting..
[systembsd.git] / src / config.h
1 /* manually increment this if adding new functionality/config files */
2 static const guint XML_FILE_COUNT = 8;
3
4
5 /* our buffers for xml config file descriptors */
6 static int hostnamed_ispect_xml_descr, hostnamed_dbus_xml_descr,
7 localed_ispect_xml_descr, localed_dbus_xml_descr,
8 timedated_ispect_xml_descr, timedated_dbus_xml_descr,
9 logind_ispect_xml_descr, logind_dbus_xml_descr;
10
11 static int *xml_descriptors[] = {
12
13 &hostnamed_ispect_xml_descr, &hostnamed_dbus_xml_descr,
14 &localed_ispect_xml_descr, &localed_dbus_xml_descr,
15 &timedated_ispect_xml_descr, &timedated_dbus_xml_descr,
16 &logind_ispect_xml_descr, &logind_dbus_xml_descr
17 };
18
19 /*our buffers for xml config file contents */
20 static gchar **hostnamed_ispect_xml, **hostnamed_dbus_xml,
21 **localed_ispect_xml, **localed_dbus_xml,
22 **timedated_ispect_xml, **timedated_dbus_xml,
23 **logind_ispect_xml, **logind_dbus_xml;
24
25 static gchar ***xml_contents[] = {
26
27 &hostnamed_ispect_xml, &hostnamed_dbus_xml,
28 &localed_ispect_xml, &localed_dbus_xml,
29 &timedated_ispect_xml, &timedated_dbus_xml,
30 &logind_ispect_xml, &logind_dbus_xml
31 };
32
33 #ifndef ALLOW_EDITED_XML
34
35 static const gchar *hostnamed_dbus_sum = "ad7536541463e426388c7562b0e7a693c3b646539b3ae163a7caf6ad95f10e08";
36 static const gchar *hostnamed_ispect_sum = "4a41b3c3b0169fb7859ed5a2bde9c8c92f2b67e5e22b6e240cb6f41f6d2e69db";
37 static const gchar *localed_dbus_sum = "fd3a5e13f660ca393d66e518eb5ba1b94e26ad055f7485955ba0070eec4e217c";
38 static const gchar *localed_ispect_sum = "3ef138659ebfd3a8b7bb11d658ed80867493e774d69ff5c70e26b39b6fef6378";
39 static const gchar *logind_dbus_sum = "f698082a6b6c42aa0d9dbd8726adfe84ef08bb84779128fefc6bb40c9476b70b";
40 static const gchar *logind_ispect_sum = "557f98d71d1b4e62ecc5c7558db72f2293e42ee8ee9722ec3ffcffd9681a6bf3";
41 static const gchar *timedated_dbus_sum = "d7d67482a821cbc7a6ab3a68f1c00e0dc61a98c3c317461abe8b7aba7ac7b864";
42 static const gchar *timedated_ispect_sum = "f576cb908636a285c9cd2e42a71ad243a0d5eb0ff12398f0627cce56c15a8268";
43
44 #endif
45
46 static gboolean set_xml_descriptors() {
47
48 }
49
50 static gboolean populate_xml_data_dir() {
51
52 }
53
54 static gboolean read_xml_from_installconf() {
55
56 }